import './Button.sass' import { Show } from 'solid-js' interface Props { label?: string to?: string onClick?: () => void } export default (props: Props) => { return ( <> ) }