'use client' import { useRef } from 'react' import { useScrollIntersection } from './hooks' const IntersectionLine = () => { const ref = useRef(null) useScrollIntersection(ref) return (
) } export default IntersectionLine