blob: d79b1d1f514aaf4701e9e93d1f7f7fd0246fa1cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
|