From f745dcdbe22e7d278a2ef7b0e29af7e86b48ca4b Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 03:25:13 +0300 Subject: feat: create initial ProductForm --- src/containers/ProductForm.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/containers/ProductForm.tsx (limited to 'src/containers/ProductForm.tsx') 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 = () => ( + + +); + +export default ProductForm; -- cgit v1.2.3