/cra-template

✨ My create-react-app template ✨

Primary LanguageJavaScript

cra-template

SplittyDev's personal and production-ready create-react-app template.

Tech Stack

Additional Goodies

  • Imports relative to src are enabled by default:
    import MyComponent from 'components/MyComponent'
    import MyPage from 'pages/MyPage'
  • Provides a basic .editorconfig file
  • Includes a basic routing skeleton in src/App.js
  • Includes a default Page component for consistent page styling

Project Structure

.
├── README.md
├── .editorconfig
├── .gitignore
├── jsconfig.json
├── public
│   ├── favicon.ico
│   ├── index.html
│   ├── logo192.png
│   ├── logo512.png
│   ├── manifest.json
│   └── robots.txt
└── src
    ├── App.js
    ├── App.test.js
    ├── components
    │   └── Page.js
    ├── index.css
    ├── index.js
    ├── pages
    │   └── HomePage.js
    ├── reportWebVitals.js
    └── setupTests.js

For more information, please refer to: