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