| 4 | import React, { useRef, useEffect, useState } from 'react'; |
| 5 | |
| 6 | interface FadeInSectionProps { |
| 7 | children: React.ReactNode; |
| 8 | delay?: number; // ms |
| 9 | } |
| 10 | |
| 11 | const FadeInSection: React.FC<FadeInSectionProps> = ({ children, delay = 0 }) => { |
| 12 | const ref = useRef<HTMLDivElement>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected