UNPKG

nilfam-editor

Version:

A powerful, customizable rich-text editor built with TipTap, React, and Tailwind CSS. Supports RTL/LTR text, resizable media (images/videos), tables, code blocks, font styling, and more for an enhanced content creation experience.

13 lines (10 loc) 197 B
import './App.css' import Editor from "./lib/Editor.jsx"; function App() { return ( <div className="flex flex-col p-20"> <Editor lang="en"/> </div> ) } export default App