summaryrefslogtreecommitdiff
path: root/src/containers/ProductForm.tsx
blob: 060fbbb81fd6be16c00c8886a62d7af969425f5b (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;