mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
6935653e15
* chore: checklist value and popup * chore: properties side panel * chore: reorganize checklist field * chore: delete property promt * chore: delete property reorganize * fix: dnd bug of checklist field * fix: whitespace on empty fields * chore: new checklist item * fix: duplicate view * fix: named checklist bars * chore: checklist padding * fix: onclick * chore: change to nullish coalescing operator * chore: remove empty string from use translation * fix: add missing translations * chore: refactor select option and checklist field editors
11 lines
346 B
TypeScript
11 lines
346 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';
|
|
import './styles/Calendar.css';
|
|
import './styles/switch.css';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />);
|