|
@@ -12,7 +12,7 @@ import styles from "./style.module.scss";
|
|
|
export interface CardProps {
|
|
|
item?: GameListRep;
|
|
|
render?: (value: GameListRep) => ReactNode;
|
|
|
- groupType?: Category["bet_type"];
|
|
|
+ groupType: Category["bet_type"];
|
|
|
}
|
|
|
const Card: FC<PropsWithChildren<CardProps>> = (props) => {
|
|
|
const { render, item, groupType } = props;
|