({ shiftKey }: { shiftKey: string })
| 158 | } |
| 159 | |
| 160 | const BackgroundShift = ({ shiftKey }: { shiftKey: string }) => ( |
| 161 | <motion.span |
| 162 | key={shiftKey} |
| 163 | layoutId="bg-shift" |
| 164 | className="absolute inset-0 -z-10 rounded-lg bg-red-500" |
| 165 | initial={{ opacity: 0, scale: 0.8 }} |
| 166 | animate={{ opacity: 1, scale: 1 }} |
| 167 | exit={{ opacity: 0, scale: 0.8 }} |
| 168 | transition={{ type: 'spring', stiffness: 200, damping: 20 }} |
| 169 | /> |
| 170 | ) |
| 171 | |
| 172 | export default function PricingPage() { |
| 173 | return <Pricing /> |
nothing calls this directly
no outgoing calls
no test coverage detected