12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
import { useCardAnimation } from '@/components/cardStack/CardStack';
|
|
|
|
export function FeatureHoverPattern() {
|
|
const { animate } = useCardAnimation();
|
|
|
|
return (
|
|
<div>
|
|
<button onClick={() => animate()}>Feature</button>
|
|
</div>
|
|
);
|
|
}
|