feat(client): initial commit
- Initialized vite project - Added bun devshell config Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
5
client/src/App.tsx
Normal file
5
client/src/App.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
function App() {
|
||||
return <p>Hello world</p>
|
||||
}
|
||||
|
||||
export { App }
|
||||
9
client/src/main.tsx
Normal file
9
client/src/main.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import { App } from './App.tsx'
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>,
|
||||
)
|
||||
Reference in New Issue
Block a user