1
0
Fork 0
tsgames/src/games/ai-story/components/app.tsx

16 lines
326 B
TypeScript

import { Header } from "./header/header";
import { Chat } from "./chat";
import { Input } from "./input";
export const App = () => {
return (
<div class='root'>
<div class='app'>
<Header />
<Chat />
<Input />
</div>
</div>
);
};