| 51 | export type SelectorsResultProps = SelectorsState; |
| 52 | |
| 53 | export interface SelectorsProviderProps { |
| 54 | children: (props: SelectorsResultProps) => ReactElement<any>; |
| 55 | } |
| 56 | |
| 57 | const SelectorsProvider = memo(function ({ children }: SelectorsProviderProps) { |
| 58 | const { editor } = useEditorInstance(); |
nothing calls this directly
no outgoing calls
no test coverage detected