import { define, Styles } from 'forge' import { runningApps } from '../server/apps' const Apps = define('Apps', { margin: '0 auto', width: 750, paddingTop: 20, }) const color = '#00c0c9' const hoverColor = 'magenta' const Link = define({ base: 'a', color, textDecoration: 'none', borderBottom: `1px solid ${color}`, selectors: { '&:hover': { color: hoverColor, cursor: 'pointer' } } }) const Timestamp = define({ fontSize: 18 }) export default () => (

🐾 Running Apps

{runningApps().map(app => (

{app.port}: {app.name} Started: {new Date(app.started).toLocaleString()}

))}
)