import '../styles/Row.sass' import { Show, type JSXElement } from 'solid-js' interface Props { children: JSXElement content?: 'left' | 'center' | 'right' | 'split' | 'spaced' | 'even' gap?: number } export default (props: Props) => { return ( <>
{props.children}
{props.children}
) }