mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-07 16:35:00 -05:00
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
|
|
"use client";
|
||
|
|
import FadeIn from "react-fade-in";
|
||
|
|
|
||
|
|
export default function ClientFadeIn({
|
||
|
|
children,
|
||
|
|
delay = 0,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
delay?: number;
|
||
|
|
}) {
|
||
|
|
return <FadeIn delay={delay}>{children}</FadeIn>;
|
||
|
|
}
|