Initial program flow page

This commit is contained in:
2026-06-23 17:56:00 +09:00
commit 5df369100a
12 changed files with 3639 additions and 0 deletions

9
src/main.jsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
);