import React, { ReactElement, ReactNode } from 'react' import styles from './index.module.css' import PublishedList from './PublishedList' const sections = [ { title: 'Published', component: }, { title: 'Compute Jobs', component: 'Coming Soon...' } ] const Section = ({ title, component }: { title: string component: ReactNode }) => { return (

{title}

{component}
) } export default function HistoryPage(): ReactElement { return (
{sections.map((section) => { const { title, component } = section return
})}
) }