| 12 | import { SortConfig, SortOption } from "./types"; |
| 13 | |
| 14 | interface ChartsToolbarProps { |
| 15 | searchQuery: string; |
| 16 | onSearchChange: (query: string) => void; |
| 17 | sortConfig: SortConfig; |
| 18 | onSortChange: (sortConfig: SortConfig) => void; |
| 19 | onNewChart: () => void; |
| 20 | onNewFolder: () => void; |
| 21 | } |
| 22 | |
| 23 | export function ChartsToolbar({ |
| 24 | searchQuery, |
nothing calls this directly
no outgoing calls
no test coverage detected