import React, { type FC } from 'react'; import useCard from './useCard'; import CardWrapper from './CardWrapper'; import CardBox from './CardBox'; import type { CardOptions } from 'types/cardOptions'; import type { ItemDto } from 'types/itemDto'; interface CardProps { item?: ItemDto; cardOptions: CardOptions; } const Card: FC = ({ item = {}, cardOptions }) => { const { getCardWrapperProps, getCardBoxProps } = useCard({ item, cardOptions } ); const cardWrapperProps = getCardWrapperProps(); const cardBoxProps = getCardBoxProps(); return ( ); }; export default Card;