UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

12 lines (11 loc) 350 B
import { BaseState, DefaultState } from "../BaseState"; export type TabsValue = string | undefined | null; export type TabsState = { id: string; value: TabsValue; setValue: (value: TabsValue) => void; } & BaseState; export type InitialTabsState = { value: TabsValue; }; export declare const DefaultTabsState: DefaultState<TabsState>;