mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-05 03:25:10 +08:00
f393f89a3f
Co-authored-by: forehalo <forehalo@gmail.com>
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import './global.css';
|
|
import './setup';
|
|
|
|
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 />);
|