mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-04 06:14:55 +00:00

* fix: modified the folder name * feat: open document and database * feat: support editing * fix: lint * fix: add share actions * fix: support interfaces
5 lines
154 B
TypeScript
5 lines
154 B
TypeScript
import ReactDOM from 'react-dom/client';
|
|
import App from '@/components/main/App';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(<App />);
|