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;