| 8 | const WINDOWS = ["per_request", "hourly", "daily"]; |
| 9 | |
| 10 | interface Props { |
| 11 | spend: Spend | null; |
| 12 | onRefresh: () => void; |
| 13 | } |
| 14 | |
| 15 | export default function SpendPanel({ spend, onRefresh }: Props) { |
| 16 | const [window, setWindow] = useState("hourly"); |
nothing calls this directly
no outgoing calls
no test coverage detected