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