File size: 325 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { once, prefix } from '@react-spring/shared'
const warnImplementation = once(console.warn)
export const useInView = () => {
warnImplementation(
`${prefix}useInView is not implemented on native platforms. Consider submitting a PR to resolve this – https://github.com/pmndrs/react-spring`
)
return null
}
|