import './Page.sass' import { Show } from 'solid-js' interface Props { children?: any alignment?: 'row' | 'column' } export default (props: Props) => { return ( <>
{props.children}
{props.children}
) }