const pageTemplate = ( host: string, wsPort: number, webAppId: string, staticHost: string, ) => { return ` Popup Page
Waiting for initialize
`; }; export default function popupPage(req, res, store, webAppId) { const {devtoolConfig} = store.getState(); const {host, wsPort} = devtoolConfig; res.send(pageTemplate(host, wsPort, webAppId, '/static')); }