├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src ├── actions │ └── dashboard.js ├── configure-store.js ├── index.js ├── reducers │ ├── dashboard.js │ └── index.js ├── router │ ├── index.js │ └── routes.js ├── screens │ └── dashboard │ │ ├── components │ │ └── select │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── config │ │ └── routes.js │ │ └── index.js └── shared │ ├── components │ └── label │ │ ├── __tests__ │ │ └── index.js │ │ ├── index.css │ │ └── index.js │ ├── constants.js │ ├── router │ ├── get-path.js │ └── paths.js │ └── utils │ ├── __tests__ │ └── normalize-number.js │ ├── error.js │ └── normalize-number.js └── webpack.config.babel.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/actions/dashboard.js -------------------------------------------------------------------------------- /src/configure-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/configure-store.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/reducers/dashboard.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/router/routes.js -------------------------------------------------------------------------------- /src/screens/dashboard/components/select/index.css: -------------------------------------------------------------------------------- 1 | :local(.select) { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /src/screens/dashboard/components/select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/screens/dashboard/components/select/index.js -------------------------------------------------------------------------------- /src/screens/dashboard/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/screens/dashboard/config/routes.js -------------------------------------------------------------------------------- /src/screens/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/screens/dashboard/index.js -------------------------------------------------------------------------------- /src/shared/components/label/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/components/label/__tests__/index.js -------------------------------------------------------------------------------- /src/shared/components/label/index.css: -------------------------------------------------------------------------------- 1 | :local(.label) { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /src/shared/components/label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/components/label/index.js -------------------------------------------------------------------------------- /src/shared/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/constants.js -------------------------------------------------------------------------------- /src/shared/router/get-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/router/get-path.js -------------------------------------------------------------------------------- /src/shared/router/paths.js: -------------------------------------------------------------------------------- 1 | export const root = '/'; 2 | -------------------------------------------------------------------------------- /src/shared/utils/__tests__/normalize-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/utils/__tests__/normalize-number.js -------------------------------------------------------------------------------- /src/shared/utils/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/utils/error.js -------------------------------------------------------------------------------- /src/shared/utils/normalize-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/src/shared/utils/normalize-number.js -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauriciosoares/react-screens-boilerplate/HEAD/webpack.config.babel.js --------------------------------------------------------------------------------