blob: 6957916fb8fcd7b590d1145af5c13d2a516d82bf (
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;
 |