import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './styles.css';
const container = document.getElementById('app');
if (!container) {
throw new Error('Missing #app container for React entry.');
}
const app = ;
ReactDOM.createRoot(container).render(
import.meta.env.DEV
? app
: (
{app}
),
);