spititout / src /main.tsx
MSF
feat: Initialize Venting Partner app with AI Studio
0d3686b
raw
history blame contribute delete
231 Bytes
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>,
);