import html from '../lib/html.ts'
interface Options {
css: string[]
preload?: string[]
script: string
state: Promise>
}
export default ({ css, preload, script, state }: Options) => html`
Carson Admin
${css?.map((href) => ``)}
${preload?.map((href) => ``)}
${state?.then((state) => ``)}
`