Quiz_dashboard/src/Pages/Admin/Reseller/Form/ModelForm.tsx
2024-09-10 12:29:57 +03:00

15 lines
324 B
TypeScript

import { Col, Row } from "reactstrap";
import ValidationField from "../../../../Components/ValidationField/ValidationField";
const Form = () => {
return (
<Row className="w-100">
<Col>
<ValidationField placeholder="name" label="name" name="name" />
</Col>
</Row>
);
};
export default Form;