mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 11:58:41 +00:00
15 lines
335 B
TypeScript
15 lines
335 B
TypeScript
import '@blocksuite/editor/themes/affine.css';
|
|
import './index.css';
|
|
|
|
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import { Router } from 'waku/router/client';
|
|
|
|
const root = createRoot(document.getElementById('root') as HTMLElement);
|
|
|
|
root.render(
|
|
<StrictMode>
|
|
<Router />
|
|
</StrictMode>
|
|
);
|