mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
239bf2fa70
* fix: some bugs * refactor: delete code that is no longer needed
9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './appflowy_app/App';
|
|
import './styles/tailwind.css';
|
|
import './styles/font.css';
|
|
import './styles/template.css';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />);
|