From dfe13c7c061b4b2fd6dfde8e1c3c284d574ad8f2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 10:21:31 +0300 Subject: refactor: wrap Input into Field --- src/containers/ContractorForm.tsx | 8 ++++---- src/containers/ProductForm.tsx | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/containers') diff --git a/src/containers/ContractorForm.tsx b/src/containers/ContractorForm.tsx index a67eabe..4e83fae 100644 --- a/src/containers/ContractorForm.tsx +++ b/src/containers/ContractorForm.tsx @@ -1,14 +1,14 @@ import React from 'react'; -import { Form, Field } from 'formik'; +import { Form } from 'formik'; import Input from '../components/Input'; const ContractorForm: React.FC = () => { return (
- - - + + +
); diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx index 4d01881..d99d3c6 100644 --- a/src/containers/ProductForm.tsx +++ b/src/containers/ProductForm.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Form, Field } from 'formik'; +import { Form } from 'formik'; import Input from '../components/Input'; @@ -7,8 +7,8 @@ const ProductForm: React.FC = () => { return (
- - + +
); -- cgit v1.2.3