UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

10 lines (7 loc) 264 B
import type { ContextExState } from '@xylabs/react-shared' import type { Dispatch } from 'react' import type { ListMode } from '../../models/index.ts' export type ListModeContextState = ContextExState<{ listMode: ListMode setListMode?: Dispatch<ListMode> }>