Files
afc2e294-919f-499e-a4bf-542…/src/components/sections/blog/BlogCardThree.tsx

12 lines
240 B
TypeScript

import { useCardAnimation } from '@/components/cardStack/CardStack';
export function BlogCardThree() {
const { animate } = useCardAnimation();
return (
<div>
<button onClick={() => animate()}>Blog</button>
</div>
);
}