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

12 lines
238 B
TypeScript

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