Initial commit

This commit is contained in:
Maulana Sodiqin
2025-03-13 00:50:45 +07:00
commit d86d77c154
27 changed files with 17684 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { StrictMode } from 'react';
import * as ReactDOM from 'react-dom/client';
import App from './app/app';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<StrictMode>
<App />
</StrictMode>
);