keeweb/app/scripts/ui/app.ts

7 lines
168 B
TypeScript

import { h, FunctionComponent } from 'preact';
import { AppView } from 'views/app-view';
export const App: FunctionComponent = () => {
return h(AppView, null);
};