This is just a lightweight boilerplate with React and MobX. Just clone and have fun!
$ git clone [email protected]:dnlnwk/react-mobx-app.git
$ cd react-mobx-appyarn install or npm install
yarn dev or npm run dev
Open in http://localhost:8080/ 👨💻
yarn test or npm run test
yarn build or npm run build
Production source in /dist folder
react-mobx-app/
├── dist/ # Production build
├── node_modules/ # Dependencies
├── src/ # React source
│ ├── js/ # React Javascript (Vanilla)
│ │ ├── components/ # All React components
│ │ ├── pages/ # All React pages
│ │ ├── store/ # Mobx store
│ │ ├── App.js # App wrapper
│ │ └── Routes.js # React router
│ ├── styles/ # SCSS architecture
│ │ ├── generals/ # General styles (type, stylesheet etc.)
│ │ ├── utils/ # Utils (functions, helpers, mixins)
│ │ ├── vendors/ # External styles
│ │ └── main.scss # SCSS mountpoint
│ ├── index.html # Clean HTML Template with root id
│ └── index.js # JS mountpoint
├── .babelrc # Babel config
├── package.json # packages/scripts
├── README.md
└── webpck.config.js # Webpack
