17 lines
539 B
TypeScript
17 lines
539 B
TypeScript
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import App from './App.tsx';
|
|
import './index.css';
|
|
|
|
// Note: Shared component CSS imports removed - CSS files not accessible in container
|
|
// Components will work without shared CSS, just without the shared styles
|
|
// To add shared styles later, either:
|
|
// 1. Copy CSS files to sites/src/styles/shared/
|
|
// 2. Or mount frontend directory and use proper path
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|