diff options
Diffstat (limited to 'src/containers/ProductForm.tsx')
-rw-r--r-- | src/containers/ProductForm.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx new file mode 100644 index 0000000..d79b1d1 --- /dev/null +++ b/src/containers/ProductForm.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import Page, { Action } from '../containers/Page'; + +const actions: Action[] = [ + { name: 'Назад', route: '/', variant: 'outlined' }, + { name: 'Сохранить', route: '/' }, +]; + +const ProductForm: React.FC = () => ( + <Page title="Продукт" actions={actions}> + </Page> +); + +export default ProductForm; |