feat: complete day 20 react task

This commit is contained in:
Ayobami
2025-07-23 23:25:19 +01:00
parent 743187b216
commit b0d86465f2
259 changed files with 42427 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react";
const MKDForm = ({ onSubmit, children, className }) => {
return (
<>
<form className={`w-full max-w-lg ${className}`} onSubmit={onSubmit}>
{children}
</form>
</>
);
};
export default MKDForm;