summaryrefslogtreecommitdiff
path: root/src/containers/ProductForm.tsx
diff options
context:
space:
mode:
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;