| 21 | export type LayersResultProps = LayersState; |
| 22 | |
| 23 | export interface LayersProviderProps { |
| 24 | children: (props: LayersResultProps) => ReactElement<any>; |
| 25 | } |
| 26 | |
| 27 | const LayersProvider = memo(function ({ children }: LayersProviderProps) { |
| 28 | const { editor } = useEditorInstance(); |
nothing calls this directly
no outgoing calls
no test coverage detected