UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

10 lines (9 loc) 315 B
import React from 'react'; import { ButtonProps } from '../../ui/Button/interfaces'; export declare type EditActionProps = { pathname: string; buttonProps?: ButtonProps; behavior?: 'default' | 'backgroundRoute'; mainRoutePath?: string; }; export declare const EditAction: React.FC<EditActionProps>;