import type { ComponentChildren } from "preact"; interface StyleProps { style?: Record; children?: ComponentChildren; } export function Card({ children, style }: StyleProps) { return (
{children}
); } export function Row({ children, style }: StyleProps) { return (
{children}
); } export function Col({ children, style }: StyleProps) { return (
{children}
); }