This PR fixes #6776 Screenshots: <img width="1728" alt="image" src="https://github.com/user-attachments/assets/ca061c30-ddb7-40ff-8c54-8b0d85d40864"> --------- Co-authored-by: sid0-0 <a@b.com> Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import ReactDOM from 'react-dom/client';
|
|
|
|
import '@emotion/react';
|
|
|
|
import { App } from '@/app/components/App';
|
|
import 'react-loading-skeleton/dist/skeleton.css';
|
|
import './index.css';
|
|
|
|
const root = ReactDOM.createRoot(
|
|
document.getElementById('root') ?? document.body,
|
|
);
|
|
|
|
root.render(<App />);
|