AppFlowy/frontend/appflowy_tauri/src/main.tsx
Askarbek Zadauly 6935653e15
chore: Edit Row changes (#2564)
* 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
2023-05-27 21:12:14 +08:00

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 />);