feat: Implement frontend build and server configuration for Vite and React

This commit is contained in:
2025-06-04 11:07:42 +09:00
parent dc92088892
commit 4bc0c4ce7f
5 changed files with 45 additions and 14 deletions

12
frontend/src/App.tsx Normal file
View File

@ -0,0 +1,12 @@
import React from 'react';
import './app/globals.css';
import RootLayout from './app/layout';
import Home from './app/page';
export default function App() {
return (
<RootLayout>
<Home />
</RootLayout>
);
}