React
React チュートリアル
https://ja.reactjs.org/tutorial/tutorial.html
React Getting Started
https://ja.reactjs.org/docs/getting-started.html
React Hooks
https://ja.reactjs.org/docs/hooks-intro.html
React Context
https://ja.reactjs.org/docs/context.html
https://qiita.com/ryokkkke/items/dc25111fcf52ea579d58
The Road to React
良い本だった
React + TypeScript プロジェクトの作り方
code:sh
cd src
npm create vite@latest hello-app -- --template react-ts
cd hello-app
npm install
npm run dev
気になる
子要素の出力(Containment) / コンポジション vs 継承
https://ja.reactjs.org/docs/composition-vs-inheritance.html
props.children
Railsのlayoutのように特定のタグで子要素を囲ってあげたい場合に使えそう
(beta) React Docs
https://beta.reactjs.org/
新しいReact Docsのベータ版
Learn React
https://beta.reactjs.org/learn
Thinking in React
https://beta.reactjs.org/learn/thinking-in-react
React Hook Form
https://github.com/react-hook-form/react-hook-form
https://react-hook-form.com/
code:sh
npm create vite@latest hook-form-test -- --template react-ts
cd hook-form-test
npm install react-hook-form