import React from 'react';
import { MarketsCards } from './cards/markets-cards';

type TProps = {
  onCardClick: (market: string) => void;
};

export const Tab2: React.FC<TProps> = props => {
  const { onCardClick } = props;
  return <MarketsCards onCardClick={onCardClick} />;
};
