You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
726 B
24 lines
726 B
// import React, { CSSProperties, useState } from "react"
|
|
// import "../style/visualizer.css"
|
|
// import Court from "../assets/court/full_court.svg"
|
|
//
|
|
// export default function Visualizer({ id, name }: { id: number; name: string }) {
|
|
// const [style, setStyle] = useState<CSSProperties>({})
|
|
//
|
|
// return (
|
|
// <div id="main">
|
|
// <div id="topbar">
|
|
// <h1>{name}</h1>
|
|
// </div>
|
|
// <div id="court-container">
|
|
// <img
|
|
// id="court"
|
|
// src={Court}
|
|
// style={style}
|
|
// alt="Basketball Court"
|
|
// />
|
|
// </div>
|
|
// </div>
|
|
// )
|
|
// }
|