ChatGPT-Next-Web/app/page.tsx

6 lines
96 B
TypeScript
Raw Normal View History

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