diff options
Diffstat (limited to 'src/containers/ContractorForm.tsx')
-rw-r--r-- | src/containers/ContractorForm.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/containers/ContractorForm.tsx b/src/containers/ContractorForm.tsx deleted file mode 100644 index 56d38be..0000000 --- a/src/containers/ContractorForm.tsx +++ /dev/null @@ -1,14 +0,0 @@ -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; |