18 lines
469 B
TypeScript
18 lines
469 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" />
|
|
<ValidationField placeholder="price" label="price" name="price" />
|
|
<ValidationField placeholder="name" label="name" name="name" />
|
|
|
|
</Col>
|
|
</Row>
|
|
);
|
|
};
|
|
|
|
export default Form;
|