diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-14 03:25:13 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-14 03:25:13 +0300 |
commit | f745dcdbe22e7d278a2ef7b0e29af7e86b48ca4b (patch) | |
tree | 099fe567f03faa86e51ce83e6918830d229d7fe0 /src/containers/ProductForm.tsx | |
parent | e1fc8ea5904de90f94d3f63287555c75067846ac (diff) | |
download | commercel-ui-f745dcdbe22e7d278a2ef7b0e29af7e86b48ca4b.tar.gz |
feat: create initial ProductForm
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; |