...
Code Block | ||||
---|---|---|---|---|
| ||||
// react 예제 (unmount 시 destroy 호출)
useEffect(() => {
```
const config = {};
const html = '';
const eventListener = {};
editor = new SynapEditor('synapeditor', config, html, eventListener);
```
return () => {
if (editor) {
```
editor.destroy();
editor = null;
```
}
}
}, []); |
...