UNPKG

mesdan

Version:

Latinî mesdan ile Osmanî metin yazmak için hazırlanmış bir alettir.

14 lines (13 loc) 415 B
import { useEffect } from 'react'; import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'; import { $getRoot } from 'lexical'; export function SağdanSolaEki() { const [editor] = useLexicalComposerContext(); useEffect(() => { editor.update(() => { const root = $getRoot(); root.setDirection('rtl'); }); }, [editor]); return null; }