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 IEthereumDeployFormProps { form: ReturnType } export function EthereumDeployForm({ form }: IEthereumDeployFormProps) { return ( <> {"ERC721"} {"ERC1155"} ) }