import { type JSXElement, Match, Switch } from 'solid-js'; import '../styles/Display.sass'; 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}
) }