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