11 lines
148 B
TypeScript
11 lines
148 B
TypeScript
|
import React from "react";
|
||
|
import {Application} from "@kernelui/core";
|
||
|
|
||
|
export function DemoApp()
|
||
|
{
|
||
|
return (
|
||
|
<Application>
|
||
|
</Application>
|
||
|
)
|
||
|
}
|