import '../styles/Modal.sass'
import { type JSXElement, Show, createSignal } from 'solid-js'
interface Props {
children: JSXElement
background?: string
color?: string
border?: string
}
export default (props: Props) => {
return (
<>
{props.children}
{props.children}
>
)
}