import React from "react"; const MKDForm = ({ onSubmit, children, className }) => { return ( <>
{children}
); }; export default MKDForm;