├── .babelrc ├── .firebaserc ├── .gitignore ├── README.md ├── firebase.json ├── functions ├── index.template.html └── package.json ├── index.js ├── package.json ├── public ├── bundle.js └── styles.css ├── src ├── App.js ├── facts.js └── index.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/.babelrc -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/functions/index.template.html -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/functions/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/package.json -------------------------------------------------------------------------------- /public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/public/bundle.js -------------------------------------------------------------------------------- /public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/public/styles.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/src/App.js -------------------------------------------------------------------------------- /src/facts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/src/facts.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davideast/react-ssr-firebase-hosting/HEAD/yarn.lock --------------------------------------------------------------------------------