Created a boilerplate project for client and server environments

This commit is contained in:
veyselboybay
2024-05-03 12:29:37 -04:00
parent c8f75d460a
commit 22f360b636
17 changed files with 1277 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)