├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── client ├── App.jsx ├── AuthenticatedApp.jsx ├── AuthenticatedAppIndex.jsx ├── Items.jsx ├── Navigation.jsx ├── Routes.jsx ├── SignIn.jsx ├── index.jsx ├── main.html ├── main.jsx └── meteor-react-demo.css ├── common └── Collections.js └── server └── startup.js /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/README.md -------------------------------------------------------------------------------- /client/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/App.jsx -------------------------------------------------------------------------------- /client/AuthenticatedApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/AuthenticatedApp.jsx -------------------------------------------------------------------------------- /client/AuthenticatedAppIndex.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/AuthenticatedAppIndex.jsx -------------------------------------------------------------------------------- /client/Items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/Items.jsx -------------------------------------------------------------------------------- /client/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/Navigation.jsx -------------------------------------------------------------------------------- /client/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/Routes.jsx -------------------------------------------------------------------------------- /client/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/SignIn.jsx -------------------------------------------------------------------------------- /client/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/index.jsx -------------------------------------------------------------------------------- /client/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/main.html -------------------------------------------------------------------------------- /client/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/client/main.jsx -------------------------------------------------------------------------------- /client/meteor-react-demo.css: -------------------------------------------------------------------------------- 1 | /* CSS declarations go here */ 2 | -------------------------------------------------------------------------------- /common/Collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/common/Collections.js -------------------------------------------------------------------------------- /server/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgaribay/meteor-react-demo/HEAD/server/startup.js --------------------------------------------------------------------------------