Files
AgentBlock/src/main.tsx
T
jerryW123 2814ec412d feat: Initialize AgentBlock project structure
Sets up the foundational files and dependencies for the AgentBlock scientific modeling platform. Includes project metadata, React app structure, Vite configuration, and essential dependencies for AI integration, UI components, and styling.
2026-05-06 00:40:25 +08:00

11 lines
231 B
TypeScript

import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import App from './App.tsx';
import './index.css';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);