-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemo.txt
42 lines (31 loc) · 1.01 KB
/
memo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// MUI Lists
// https://mui.com/components/lists/
// MUI ver.5(2021年9月)からsx propという新機能が使えるのでmakeStylesなくてもOK
// ただしstyledよりもパフォーマンスが悪いらしい
// https://mui.com/system/the-sx-prop/
// const useStyles = makeStyles((theme: Theme) =>
// createStyles({
// root: {
// width: '100%',
// maxWidth: '36ch',
// backgroundColor: theme.palette.background.paper,
// },
// inline: {
// display: 'inline'
// }
// })
// );
# リストと key
リストのkeyは文字列型が推奨されている
https://ja.reactjs.org/docs/lists-and-keys.html
// MUI Dialog Alerts
// https://mui.com/components/dialogs/#alerts
// MUI TextField
// https://mui.com/api/text-field/
scss導入
$ yarn add node-sass
.css → .scss, 参照修正
// Start writing Firebase Functions
// https://firebase.google.com/docs/functions/typescript
// async付き即時関数。
// 即時関数 https://qiita.com/katsukii/items/cfe9fd968ba0db603b1e