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