The source code is licensed MIT. The website content is licensed CC BY 4.0,see LICENSE.
This is DEMO app for "日本一わかりやすいReact入門【実践編】" produced by とらゼミ
This app is developed as teaching materials for React.
YouTube Link
npx create-react-app YOUR_PROJECT_NAME
npm install --save @material-ui/core @material-ui/icons @material-ui/system
- Delete unnecessary comment rows
- Modify title and description for your site
- Add stylesheet for Material-UI
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
npm install -g firebase-tools
firebase login
firebase init
npm install --save firebase
firebase deploy
Import these packages and initialize Firebase app
import * as functions from 'firebase-functions'; import * as admin from "firebase-admin"; admin.initializeApp(); const db = admin.firestore();
curl -X POST https://YOUR_REGION-YOUR_PROJECT_NAME.cloudfunctions.net/addDataset -H "Content-Type:application/json" -d @dataset.json