feat: Implement frontend build and server configuration for Vite and React
This commit is contained in:
12
frontend/src/App.tsx
Normal file
12
frontend/src/App.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user