18 lines
562 B
TypeScript
18 lines
562 B
TypeScript
import { Col, Row } from "reactstrap";
|
|
import ValidationField from "../../../../../Components/ValidationField/ValidationField";
|
|
|
|
const Form = () => {
|
|
return (
|
|
<Row className="w-100">
|
|
<Col>
|
|
<ValidationField placeholder="amount_value" label="amount_value" name="amount_value" />
|
|
<ValidationField type="Date" placeholder="date_of_receipt" label="date_of_receipt" name="date_of_receipt" />
|
|
<ValidationField placeholder="description" label="description" name="description" />
|
|
|
|
</Col>
|
|
</Row>
|
|
);
|
|
};
|
|
|
|
export default Form;
|