(props: Props)
| 9 | } |
| 10 | |
| 11 | export default function Chart(props: Props) { |
| 12 | const data = use(props.data) |
| 13 | return ( |
| 14 | <div> |
| 15 | <Stats data={data} /> |
| 16 | {/* <div className="flex flex-row flex-wrap gap-4 mt-4"> |
| 17 | <Volume data={data} /> |
| 18 | <Traders data={data} /> |
| 19 | </div> */} |
| 20 | </div> |
| 21 | ) |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected