"use client";
import { motion, useReducedMotion } from "framer-motion";
import { createContext, useContext } from "react";
const FadeInStaggerContext = createContext(false);
const viewport = { once: true, margin: "0px 0px -200px" };
export function FadeIn(props: any) {
const shouldReduceMotion = useReducedMotion();
const isInStaggerGroup = useContext(FadeInStaggerContext);
return (
);
}
export function FadeInStagger({ faster = false, ...props }) {
return (
);
}