import { Form } from "antd" import React from "react" import FormSection from "../shared/form/ui/form-section" import FormGroup from "../shared/form/ui/form-group" import dynamic from "next/dynamic" interface Props { program: any } const ProgramPanel = (props: Props) => { const { program } = props const Preview = dynamic(() => import("@uiw/react-markdown-preview"), { ssr: false }) return (
{program?.subject} {program?.course}
) } export default React.memo(ProgramPanel)