- Add App.tsx with placeholder content - Add main.tsx entry point - Add index.css with basic styles Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
createRoot(document.getElementById('root')!).render(<App />);
|