import { Component, ComponentProps, Event } from "waft"; import { JSONObject, JSON } from "waft-json"; import { lodash } from "waft-ui-common"; export class Overlay extends Component { constructor(props: ComponentProps) { super(props); } willMount(props: JSONObject): void { } onTap(e: Event): void{ this.props.dispatch("onTap", new JSONObject()); } notap(e: Event): void{ return } }