├── .DS_Store ├── .babelrc ├── .gitignore ├── README.md ├── app ├── SearchableTable.js ├── app.js └── data.js ├── gulpfile.js ├── index.html ├── package.json └── web └── js ├── bundle.js └── vendors.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015","react"] } 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/SearchableTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/app/SearchableTable.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/app/app.js -------------------------------------------------------------------------------- /app/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/app/data.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /web/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/web/js/bundle.js -------------------------------------------------------------------------------- /web/js/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsierens/es6-react-boilerplate/HEAD/web/js/vendors.js --------------------------------------------------------------------------------