Smartable/demo/DemoApp.tsx

15 lines
230 B
TypeScript
Raw Normal View History

2024-07-15 22:33:29 +02:00
import React from "react";
import {Application} from "@kernelui/core";
2024-07-24 17:46:26 +02:00
import {DemoTable} from "./DemoTable";
2024-07-15 22:33:29 +02:00
export function DemoApp()
{
return (
<Application>
2024-07-24 17:46:26 +02:00
<h1>Simple table</h1>
<DemoTable />
2024-07-15 22:33:29 +02:00
</Application>
)
}