Files
afc2e294-919f-499e-a4bf-542…/src/components/cardStack/layouts/timelines/TimelineProcessFlow.tsx

16 lines
296 B
TypeScript

import { useCardAnimation } from '../../hooks/useCardAnimation';
export function TimelineProcessFlow() {
const { animate } = useCardAnimation();
const handleAnimate = () => {
animate();
};
return (
<div>
<button onClick={handleAnimate}>Animate</button>
</div>
);
}