import { h, Component } from 'preact'; import "./modal.scss" export class Modal extends Component<{ title: string, onClose?: () => void, noClose?: boolean }, {}> { constructor(props) { super(props); } render() { return } }