6 lines
166 B
TypeScript
Executable File
6 lines
166 B
TypeScript
Executable File
import { Component } from "preact";
|
|
|
|
export interface PageProps {
|
|
state: any;
|
|
}
|
|
export abstract class Page<P extends PageProps, S> extends Component<P, S> { } |