Files
twenty/packages/twenty-front/src/index.tsx
sid0-0 e662f6ccb3 fix: fixed shortcuts population (#7016)
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>
2024-10-08 17:39:41 +02:00

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 />);