mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-24 21:51:03 +10:00
28 lines
868 B
TypeScript
28 lines
868 B
TypeScript
import { Modal, Text } from '@mantine/core';
|
|
import { useAtom } from 'jotai';
|
|
import { historyAtoms } from '@/features/page-history/atoms/history-atoms';
|
|
import HistoryModalBody from '@/features/page-history/components/history-modal-body';
|
|
|
|
export default function HistoryModal() {
|
|
const [isModalOpen, setModalOpen] = useAtom(historyAtoms);
|
|
|
|
return (
|
|
<>
|
|
<Modal.Root size={1200} opened={isModalOpen} onClose={() => setModalOpen(false)}>
|
|
<Modal.Overlay />
|
|
<Modal.Content style={{ overflow: 'hidden' }}>
|
|
<Modal.Header>
|
|
<Modal.Title>
|
|
<Text size="md" fw={500}>Page history</Text>
|
|
</Modal.Title>
|
|
<Modal.CloseButton />
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<HistoryModalBody />
|
|
</Modal.Body>
|
|
</Modal.Content>
|
|
</Modal.Root>
|
|
</>
|
|
);
|
|
}
|