| 34 | export type PagesResultProps = PagesState; |
| 35 | |
| 36 | export interface PagesProviderProps { |
| 37 | children: (props: PagesResultProps) => ReactElement<any>; |
| 38 | } |
| 39 | |
| 40 | const PagesProvider = memo(function ({ children }: PagesProviderProps) { |
| 41 | const { editor } = useEditorInstance(); |
nothing calls this directly
no outgoing calls
no test coverage detected