| 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 | |
| } | |