| 7 | import { useCallback } from "react"; |
| 8 | |
| 9 | export class WaveAiModel implements ViewModel { |
| 10 | viewType = "waveai"; |
| 11 | viewIcon = atom("sparkles"); |
| 12 | viewName = atom("Wave AI"); |
| 13 | noPadding = atom(true); |
| 14 | viewComponent = WaveAiDeprecatedView; |
| 15 | |
| 16 | constructor(_: ViewModelInitType) {} |
| 17 | } |
| 18 | |
| 19 | function WaveAiDeprecatedView() { |
| 20 | const handleOpenAIPanel = useCallback(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected