summaryrefslogtreecommitdiff
path: root/src/containers/ProductForm.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-25 23:09:49 +0300
committereug-vs <eug-vs@keemail.me>2021-03-25 23:09:49 +0300
commit062f10a25d43b875d187cf582b2ecf96d075ec26 (patch)
treec6b43379325ba22a051827e6a461a8f8fed98402 /src/containers/ProductForm.tsx
parent77ac1549e2ab5ac68a1a7464ada9be7e2a2aad92 (diff)
downloadcommercel-ui-062f10a25d43b875d187cf582b2ecf96d075ec26.tar.gz
refactor: move services to separate folder
Diffstat (limited to 'src/containers/ProductForm.tsx')
-rw-r--r--src/containers/ProductForm.tsx15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx
deleted file mode 100644
index 6957916..0000000
--- a/src/containers/ProductForm.tsx
+++ /dev/null
@@ -1,15 +0,0 @@
-import React from 'react';
-import { Form } from 'formik';
-import Input from '../components/Input';
-
-
-const ProductForm: React.FC = () => {
- return (
- <Form id="form">
- <Input name="name" label="Название" />
- <Input name="price" type="number" label="Цена" />
- </Form>
- );
-};
-
-export default ProductForm;