<Modal
size = "xl"
show = { modalShow }
onHide = {() => setModalShow(false)}
aria-labelledby="example-modal-sizes-title-xl">
<Modal.Header closeButton />
<Modal.Body>
<CKEditor
editor = { CustomEditor }
data = ""
onReady = { editor => {
// You can store the "editor" and use when it is needed.
// console.log( 'Editor is ready to use!', editor );
}}
onChange = { ( event, editor ) => {
const data = editor.getData();
setEditorData(data);
}}
/>
<div className="send_button_box d-flex justify-content-end">
<Button onClick={handleSend} variant="outline-secondary">발행</Button>
</div>
</Modal.Body>
</Modal>
이게 좋아 보였는데, 결국엔 페이지로 가게 되었다.
코딩도 기획도 복잡하게 가지 말자.
복잡한 거 치고 잘 된 거 없다.
이 카테고리의 목록 | 총 171개의 게시물 |
씨알로그 프로젝트 시작하기 | 2025. 6. 28. |
공터에 에디터 달기 - CKEditor 5 + Next.js Integration | 2025. 6. 16. |
그러면 언제부터 작업이 들어가는 걸까 | 2025. 6. 14. |
씨알로그와 공터는 무슨 차이가 있을까 | 2025. 6. 14. |
씨알로그는 콘디의 개발노트이다 | 2025. 6. 14. |
CROS 에러가 날 때 | 2025. 1. 14. |
개발 플랫폼 | 2025. 1. 4. |
자동화는 아직이다 | 2024. 12. 17. |
에이스캘린더 프로세스 | 2024. 12. 10. |
신성기사 SimC APL | 2024. 12. 1. |