blob: c78ed9bdb5ffee4faac15f4edccc0d170e0ba550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from 'react';
import { Form } from 'formik';
import Input from '../components/Input';
const ContractorForm: React.FC = () => {
return (
<Form id="form">
<div className="max-w-lg">
<Input name="name" label="Название" />
<Input name="vatId" label="УНП" />
</div>
</Form>
);
};
export default ContractorForm;
|