Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 382 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 382 Bytes

Novella

Example Next.js application using novel.

Installation

To use Novel in a project, you can run the following command to install the novel NPM package:

npm i novel

Then, you can use it in your code like this:

import { Editor } from "novel";

export default function App() {
  return (
     <Editor />
  )
}