started adding to the output form

This commit is contained in:
2025-11-24 22:07:08 +00:00
parent 8c967b3ae2
commit ec81392899
8 changed files with 221 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
import { Formik, Form } from "formik";
import BearerTypeCard from "./BearerTypeCard";
import ChannelCard from "./ChannelCard";
const Output = () => {
const handleSubmit = (values) => {
console.log(values);
};
const inititalValues = {
format: "JSON",
enabled: true,
backOfficeURL: "",
username: "",
password: "",
connectTimeoutSeconds: Number(5),
readTimeoutSeconds: Number(15),
overviewQuality: "HIGH",
cropSizeFactor: "3/4",
};
return (
<Formik initialValues={inititalValues} onSubmit={handleSubmit}>
<Form>
<BearerTypeCard />
<ChannelCard />
</Form>
</Formik>
);
};
export default Output;