17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
import React from "react";
|
|
import {Application} from "@kernelui/core";
|
|
import {DemoTable} from "./DemoTable";
|
|
import {RemoveDemoTable} from "./RemoveDemoTable";
|
|
|
|
export function DemoApp()
|
|
{
|
|
return (
|
|
<Application>
|
|
<h1>Random table</h1>
|
|
|
|
<DemoTable />
|
|
|
|
<RemoveDemoTable />
|
|
</Application>
|
|
)
|
|
}
|