Plan/Plan/react/dashboard/src/components/cards/player/PlayerRecentSessionsCard.jsx

10 lines
259 B
JavaScript

import React from "react";
import RecentSessionsCard from "../common/RecentSessionsCard";
const PlayerRecentSessionsCard = ({player}) => {
return (
<RecentSessionsCard sessions={player.sessions}/>
)
}
export default PlayerRecentSessionsCard;