| 24 | export type DevicesResultProps = DevicesState; |
| 25 | |
| 26 | export interface DevicesProviderProps { |
| 27 | children: (props: DevicesResultProps) => ReactElement<any>; |
| 28 | } |
| 29 | |
| 30 | const DevicesProvider = memo(function ({ children }: DevicesProviderProps) { |
| 31 | const { editor } = useEditorInstance(); |
nothing calls this directly
no outgoing calls
no test coverage detected