UNPKG

@satek-vn/react-editor

Version:

A lightweight and customizable rich text editor built with React and TipTap, designed for modern web applications.

13 lines (9 loc) 307 B
import { useContext } from 'react'; import { EditorContext, EditorContextData } from '../contexts/editor'; export const useEditorData = (): EditorContextData => { const store = useContext(EditorContext); if (!store) { throw new Error('Editor not initialized'); } return store; };