UNPKG

@fruits-chain/react-native-xiaoshu

Version:
11 lines (6 loc) • 282 B
import type { Context } from 'react' import { createContext, useContext } from 'react' import type { RowContextState } from './interface' const RowContext: Context<RowContextState> = createContext({}) export const useRow = () => useContext(RowContext) export default RowContext