import { Component } from "./jsx/jsx-runtime.ts"; export const Main: Component = (attributes, children) => (
{...children}
); export const HCenter: Component = (attributes, children) => (
{...children}
); export const styles = (s: Record): string => Object.entries(s) .map(([rule, val]) => `${rule}: ${val};`) .join("");