microbe-model / web /src /main.jsx
Miyu Horiuchi
v2 architecture: FastAPI backend + React frontend (pixel-perfect Prototype A)
796c5f4
raw
history blame contribute delete
165 Bytes
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
createRoot(document.getElementById('root')).render(<App />);