NextChat-U/app/page.tsx

6 lines
96 B
TypeScript
Raw Normal View History

2023-03-10 02:01:40 +09:00
import { Home } from "./components/home";
2023-03-08 00:23:54 +09:00
2023-03-10 02:01:40 +09:00
export default function App() {
return <Home />;
2023-03-08 00:23:54 +09:00
}