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