mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import './global.css';
|
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import { App } from './app';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
createRoot(document.getElementById('app')!).render(<App />);
|