├── .babelrc ├── .gitignore ├── .idea ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── scotch-react-router.iml └── workspace.xml ├── README.md ├── index.js ├── package.json ├── public ├── bundle.js ├── bundle.js.map ├── index.html └── style.css ├── src ├── Car │ ├── car-detail.component.jsx │ └── car.component.jsx ├── Common │ ├── about.component.jsx │ ├── home.component.jsx │ └── main.component.jsx └── index.jsx └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets" : ["es2015", "react"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scotch-react-router.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/.idea/scotch-react-router.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/package.json -------------------------------------------------------------------------------- /public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/public/bundle.js -------------------------------------------------------------------------------- /public/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/public/bundle.js.map -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/public/index.html -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/public/style.css -------------------------------------------------------------------------------- /src/Car/car-detail.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/Car/car-detail.component.jsx -------------------------------------------------------------------------------- /src/Car/car.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/Car/car.component.jsx -------------------------------------------------------------------------------- /src/Common/about.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/Common/about.component.jsx -------------------------------------------------------------------------------- /src/Common/home.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/Common/home.component.jsx -------------------------------------------------------------------------------- /src/Common/main.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/Common/main.component.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/src/index.jsx -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-routing/HEAD/webpack.config.js --------------------------------------------------------------------------------