UNPKG

substyle

Version:

Universal styling for reusable React components

11 lines (8 loc) 295 B
// @flow import { createContext } from 'react' import defaultPropsDecorator from './defaultPropsDecorator' import type { DecoratorFuncT } from './types' export const PropsDecoratorContext = createContext<DecoratorFuncT>( defaultPropsDecorator ) export default PropsDecoratorContext.Provider