UNPKG

@ozen-ui/kit

Version:

React component library

11 lines (10 loc) 386 B
import React, { useContext } from 'react'; import { LIST_DEFAULT_SIZE } from './constants'; export var ListContext = React.createContext({ size: LIST_DEFAULT_SIZE, }); export var useListContext = function () { return useContext(ListContext); }; // Именованный провайдер if (process.env.NODE_ENV !== 'production') { ListContext.displayName = 'ListContext'; }