cohost/html/common.tsx

8 lines
182 B
TypeScript
Raw Normal View History

2023-07-10 14:52:20 -04:00
import { Component } from "./jsx/jsx-runtime.ts";
export const Main: Component = (attributes, children) => (
<div {...attributes} id="main">
{...children}
</div>
);