summaryrefslogtreecommitdiff
path: root/src/services/products/ProductForm.tsx
blob: 62f0e70d8c2d62c81f5d0af6f28c63c6556eaa89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;