First alpha

This commit is contained in:
Fabian
2019-01-27 21:29:33 +01:00
commit 313f5aee97
41 changed files with 10856 additions and 0 deletions

6
src/page.ts Executable file
View File

@ -0,0 +1,6 @@
import { Component } from "preact";
export interface PageProps {
state: any;
}
export abstract class Page<P extends PageProps, S> extends Component<P, S> { }