10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
import React from 'react';
|
|
import { CardStack, CardStackProps } from '@/components/cardStack/CardStack';
|
|
|
|
type TeamCardSixProps = Omit<CardStackProps, 'supports3DAnimation'>;
|
|
|
|
export const TeamCardSix: React.FC<TeamCardSixProps> = (props) => {
|
|
return <CardStack {...props} />;
|
|
};
|
|
|
|
export default TeamCardSix; |