()
| 8 | import http from 'http'; |
| 9 | |
| 10 | const App = () => ( |
| 11 | <html> |
| 12 | <body> |
| 13 | <AppHeader framework="react-ssr-node" path="/dashboard" /> |
| 14 | <Dashboard /> |
| 15 | </body> |
| 16 | </html> |
| 17 | ); |
| 18 | const port = Number(process.env.port || 6014); |
| 19 | |
| 20 | var didError = false; |
nothing calls this directly
no outgoing calls
no test coverage detected