// next import Link from "next/link"; // hooks import useUser from "lib/hooks/useUser"; // types import { ICycle } from "types"; import SingleStat from "./single-stat"; type Props = { cycles: ICycle[]; }; const CycleStatsView: React.FC = ({ cycles }) => { return ( <> {cycles.map((cycle) => ( ))} ); }; export default CycleStatsView;