import { Component } from "preact"; export interface PageProps { state: any; } export abstract class Page

extends Component { }