Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
325 Bytes
import { once, prefix } from '@react-spring/shared'
const warnImplementation = once(console.warn)
export const useScroll = () => {
warnImplementation(
`${prefix}useScroll is not implemented on native platforms. Consider submitting a PR to resolve this – https://github.com/pmndrs/react-spring`
)
return null
}