fixes - #5201 https://github.com/twentyhq/twenty/assets/13139771/871019c6-6456-46b4-95dd-07ffb33eb4fd --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
21 lines
546 B
TypeScript
21 lines
546 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
|
|
import { AppThemeProvider } from '@/ui/theme/components/AppThemeProvider';
|
|
import { ThemeType } from '@/ui/theme/constants/ThemeLight';
|
|
import Sidepanel from '~/options/Sidepanel';
|
|
|
|
import '~/index.css';
|
|
|
|
ReactDOM.createRoot(document.getElementById('app') as HTMLElement).render(
|
|
<AppThemeProvider>
|
|
<React.StrictMode>
|
|
<Sidepanel />
|
|
</React.StrictMode>
|
|
</AppThemeProvider>,
|
|
);
|
|
|
|
declare module '@emotion/react' {
|
|
export interface Theme extends ThemeType {}
|
|
}
|