import type { ComponentChild, FunctionalComponent } from 'preact'; interface Props { children: ComponentChild; } export const ColorStack: FunctionalComponent = ({ children, ...props }) => { return (
{children}
); };