import "../style/theme/default.css" import "../style/new_tactic_panel.css" import plainCourt from "../assets/court/court.svg" import halfCourt from "../assets/court/half_court.svg" export default function NewTacticPanel() { return (

Select a basket court

) } function CourtKindButton({ name, image, details, redirect, }: { name: string image: string details: string redirect: string }) { return (
location.href = redirect} >
{details}
{name}

{name}

) }