blob: f4583723cb399641d1fc26e7448f20d1b3974267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from 'react';
import { Form } from 'formik';
import Input from '../components/Input';
import DatePicker from '../components/DatePicker';
const ProductForm: React.FC = () => {
return (
<Form id="form">
<Input name="name" label="Название" />
<Input name="price" type="number" label="Цена ($)" />
</Form>
);
};
export default ProductForm;
|