import Modal from '../../components/Common/Modal'; import PrettyJson from '../../components/Common/PrettyJSON'; import { SyntaxTree } from '../../utils/models'; interface DlgShowASTProps { hideWindow: () => void syntaxTree: SyntaxTree } function DlgShowAST({ hideWindow, syntaxTree }: DlgShowASTProps) { const handleSubmit = () => { // Do nothing }; return (
); } export default DlgShowAST;