This commit is contained in:
stakeswky
2023-06-09 14:13:25 +08:00
committed by GitHub
parent ba9d9c3d5f
commit 2378615887
14 changed files with 794 additions and 0 deletions

7
admin/src/main.tsx Normal file
View File

@@ -0,0 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<App />
);