react project template (Node.js, React.js, Babel, SASS, Webpack, Webpack-Dev-Server)
Simple react project template that includes following features
Clone the project from https://github.com/sanoop-jose/react-project-template.git
cd react-project-template
npm install
npm start
goto http://localhost:3000/
src
├── app
│ ├── actions
│ ├── assets
│ │ ├── images
│ ├── components
│ ├── containers
│ ├── reducers
│ │ ├── index.js
│ │ ├── globalData
│ ├── styles
│ │ ├── app.scss
│ │ ├── _variables.scss
│ │ ├── _colors.scss
│ │ ├── _font.scss
│ ├── index.js
│ ├── App.js
├── index.html
└── index.js
import { BrowserRouter as Router, Route } from 'react-router-dom'
<Router>
<Route path="/:filter?" component={App} ></Route>
</Router>
@import 'variables';
body {
background: $primaryBgColor;
color: $primaryTextColor;
}