Files
react/lib/states/config-context.ts
2020-03-19 01:15:58 +08:00

11 lines
199 B
TypeScript

import React from 'react'
export interface Configs {
onChange?: Function
shouldScroll?: boolean
updateShouldScroll?: Function
}
export const ConfigContext = React.createContext<Configs>({})