({ container }: { container: HTMLElement })
| 38 | const event = Styles.events.custom; |
| 39 | |
| 40 | const up = ({ container }: { container: HTMLElement }) => { |
| 41 | setPropState({ |
| 42 | sectors: Styles.getSectors({ visible: true }), |
| 43 | Container: portalContainer(container) |
| 44 | }); |
| 45 | }; |
| 46 | |
| 47 | editor.on(event, up); |
| 48 |
nothing calls this directly
no test coverage detected