import React from "react" import { MenuItem, Stack } from "@mui/material" import { useForm } from "react-hook-form" import { FormTextInput } from "../../components/common/form/form-text-input" import { FormCheckbox } from "../../components/common/form/form-checkbox" import { FormSelect } from "../../components/common/form/form-select" interface ITezosDeployFormProps { form: ReturnType } export function TezosDeployForm({ form }: ITezosDeployFormProps) { return ( <> {"NFT"} {"MT"} ) }