import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; // Your global styles / Tailwind imports import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( );