import { h, JSX } from "preact"; export function Modal({ hidden, className, children, ...props }: JSX.HTMLAttributes & { hidden?: boolean }) { return (
{children}
); } export function ModalTitle({ className, children, ...props }: JSX.HTMLAttributes) { return (
{children}
); } export function ModalContent({ className, children, ...props }: JSX.HTMLAttributes) { return (
{children}
); } export function ModalActions({ className, children, ...props }: JSX.HTMLAttributes) { return (
{children}
); }