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