UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

9 lines (8 loc) 254 B
import React from 'react'; import { IArea, AreaRowLayout } from '../types/areaTypes'; export interface AreaTabsProps { rowId: string; row: AreaRowLayout; areas: Record<string, IArea>; } export declare const AreaTabs: React.FC<AreaTabsProps>;