/* import { useState } from "react"; import { StatsToggle } from "./StatsToggle"; */ import { StatsToggle } from "(app)/_components/StatsToggle"; import { DispoStats, PilotStats } from "./PilotDispoStats"; export const Stats = ({ stats }: { stats: "pilot" | "dispo" }) => { return ( <>
{stats === "dispo" && } {stats === "pilot" && }
); };