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>
);
};