import { Form, Formik, Field } from "formik"; import FormGroup from "../components/FormGroup"; import type { NPEDFieldType } from "../../../types/types"; const NPEDFields = () => { const initialValues = { username: "", password: "", clientId: "", }; const handleSubmit = (values: NPEDFieldType) => { alert(JSON.stringify(values)); }; return (
); }; export default NPEDFields;