import '../styles/Viewport.sass' import { type JSXElement, Switch, Match } from 'solid-js' interface Props { children: JSXElement desktop?: boolean tablet?: boolean mobile?: boolean } export default (props: Props) => { return ( <>
{props.children}
{props.children}
{props.children}
{props.children}
{props.children}
{props.children}
) }