dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
9 lines (8 loc) • 387 B
TypeScript
import * as React from 'react';
import { EntityTabsBlock } from '../../../widgets/tabs/entity';
import type { DME } from '../../types';
interface NavItemProps extends React.HTMLAttributes<HTMLElement>, DME.WidgetRenderProps<EntityTabsBlock> {
tabKey: string | number;
}
declare const NavItem: (props: NavItemProps) => import("react/jsx-runtime").JSX.Element;
export default NavItem;