문서

@dev-jitsu/web-editor 문서

웹 에디터를 프로젝트에 통합하는 방법을 알아보세요.

빠른 시작

# 1. 패키지 설치
npm install @dev-jitsu/web-editor

# 2. React 컴포넌트에서 사용
import { WebEditor } from '@dev-jitsu/web-editor';

function App() {
  return (
    <WebEditor
      licenseKey="YOUR_LICENSE_KEY"
      theme="default"
      onChange={(content) => console.log(content)}
    />
  );
}