react cards and stored proc in backend

This commit is contained in:
2024-06-12 22:52:20 +09:00
parent 131e5e2ef3
commit 4f6855e6aa
22 changed files with 4248 additions and 8 deletions

View File

@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)