I have tried this two modules:
https://www.npmjs.com/package/react-fullscreen
https://www.npmjs.com/package/react-fullscreen-component
Im using react-redux boilerplante, with webpack isomorphic tools, like this:
app.use('/app', (req, res) => {
.then(store => {
res.send(
'<!doctype html>n' +
ReactDOM.renderToString(
<Html
assets={webpackIsomorphicTools.assets()}
store={store}
globals={projectGlobals}
/>
)
)
})
.catch(err => {
res.status(err.code)
res.redirect('/signin?error=true')
})
})
