import { JSX } from "preact"; export type MarginProps = { children?: JSX.Element|JSX.Element[]; }; export function Margin(props: MarginProps): JSX.Element { return (
{props.children}
) }