import * as React from "react"; import { Box } from "@mui/material"; import Grid from "@mui/material/Grid"; import { Typography } from "@mui/material"; import Button from "@mui/material/Button"; import TextField from "@mui/material/TextField"; import InputLabel from '@mui/material/InputLabel'; import MenuItem from '@mui/material/MenuItem'; import FormControl from '@mui/material/FormControl'; import Select from '@mui/material/Select'; import dynamic from 'next/dynamic' const RichTextEditor = dynamic(() => import('@mantine/rte'), { ssr: false, }) const BillingInformation = () => { const handleSubmit = (event) => { event.preventDefault(); const data = new FormData(event.currentTarget); console.log({ email: data.get("email"), password: data.get("password"), }); }; // Select dropdown const [countrySelect, setCountrySelect] = React.useState(''); const handleChange = (event) => { setCountrySelect(event.target.value); }; return ( <> Billing Information First Name Last Name Email Address Phone Address Country Select Town/City State Zip Code Order Notes : ) } export default BillingInformation;