mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
* creating useProjectUploader hook * removing a comment and polishing some code * removing doc from the array * rewording comments * creating the modal that appears after docs conversion is completed * moving the file * renaming translations * moving into modals * adding content within a list * removing the newUrl variable * changing translation name * adding a button in the test GitOrigin-RevId: f08ec6b02874f93a79039b831afad820239e094c
20 lines
732 B
TypeScript
20 lines
732 B
TypeScript
import { memo } from 'react'
|
|
import ForceDisconnected from '@/features/ide-react/components/modals/force-disconnected'
|
|
import { UnsavedDocs } from '@/features/ide-react/components/unsaved-docs/unsaved-docs'
|
|
import SystemMessages from '@/shared/components/system-messages'
|
|
import ViewOnlyAccessModal from '@/features/share-project-modal/components/view-only-access-modal'
|
|
import ProjectConvertedFromDocxModal from '@/features/ide-react/components/modals/project-converted-from-docx-modal'
|
|
|
|
export const Modals = memo(() => {
|
|
return (
|
|
<>
|
|
<ForceDisconnected />
|
|
<UnsavedDocs />
|
|
<SystemMessages />
|
|
<ViewOnlyAccessModal />
|
|
<ProjectConvertedFromDocxModal />
|
|
</>
|
|
)
|
|
})
|
|
Modals.displayName = 'Modals'
|