diff options
Diffstat (limited to 'src/containers/ProductForm.tsx')
-rw-r--r-- | src/containers/ProductForm.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx index d99d3c6..060fbbb 100644 --- a/src/containers/ProductForm.tsx +++ b/src/containers/ProductForm.tsx @@ -6,10 +6,8 @@ import Input from '../components/Input'; const ProductForm: React.FC = () => { return ( <Form id="form"> - <div className="max-w-lg"> - <Input name="name" label="Название" /> - <Input name="price" type="number" label="Цена ($)" /> - </div> + <Input name="name" label="Название" /> + <Input name="price" type="number" label="Цена ($)" /> </Form> ); }; |