-
Notifications
You must be signed in to change notification settings - Fork 45
Home
ebisucomtechlab edited this page Aug 19, 2022
·
14 revisions
『作って学ぶ Next.js/React Webサイト構築』のサポートwiki です。 変更等があれば追加していきます。
- P.2にPDFの使い方を追加しました。
[2022年8月17日更新(P.21、313の情報を追加)]
- 誤:
{"div", {class: "contents"},
{"h1", null, "Hello"},
{"p", null, "こんにちは"},
{"footer", null, "by CUBE"}}
- 正:
{"div", {class: "contents"},
[{"h1", null, "Hello"},
{"p", null, "こんにちは"},
{"footer", null, "by CUBE"}]}
- 誤: import Logo from './logo'
- 正: import Logo from 'components/logo'
- 誤: .text :global(.subtitle) {
- 正: .text :global(.title) {
- 誤: styles/pagination.module.css
- 正: styles/posts.module.css
- 誤: import Accordion from 'components/accordion-anim'
- 正: import Accordion from 'components/accordion'