ConceptPortal-public/rsconcept/frontend/src/dialogs/DlgShowTypification/DlgShowTypification.tsx
Ivan 402277e30e
Some checks failed
Frontend CI / build (22.x) (push) Has been cancelled
F: Implementing M-Graph pt1
2024-10-31 15:21:50 +03:00

26 lines
681 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import Modal, { ModalProps } from '@/components/ui/Modal';
import { IArgumentInfo } from '@/models/rslang';
interface DlgShowTypificationProps extends Pick<ModalProps, 'hideWindow'> {
result: string;
args: IArgumentInfo[];
}
function DlgShowTypification({ hideWindow, result, args }: DlgShowTypificationProps) {
console.log(result, args);
return (
<Modal
header='Структура типизации'
readonly
hideWindow={hideWindow}
className='flex flex-col justify-stretch w-[calc(100dvw-3rem)] h-[calc(100dvh-6rem)]'
>
<div>В разработке...</div>
</Modal>
);
}
export default DlgShowTypification;