This project is a template of React Development.(extends create-react-app)
このプロジェクトはReact開発用のテンプレートプロジェクトです。(create-react-appで作成されたものを拡張)
- React(create-react-app)
- TypeScript
- ESLint
- Prettier
- React Router
※In the case of vscode(VSCodeの場合)
git clone https://github.com/freelance-jak/react-template.git
and in the project
yarn install
※It is recommended that you create a workspace of VSCode
(VSCodeでワークスペースを作成し、そのsetting.jsonを編集することをオススメ)
Add the following to the setting(settingに下記を追記)
"settings": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
\That's all! Enjoy your development of React!/
- Formatted automatically when you save
(保存時に自動でフォーマットされます) - Simple routing with React Router
(React Routerでの簡単な画面遷移が行えます)