12 lines
240 B
TypeScript
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>
|
|
);
|
|
}
|