import { Field } from "formik"; type ChannelFieldsProps = { format: string; }; const ChannelFields = ({ format }: ChannelFieldsProps) => { return (
); }; export default ChannelFields;