Quickstart Guide
A really quick way to get started is to spin up our Next.js example.
Remirror is comprised of core libraries like @remirror/core
and UI libraries like @remirror/editor-social
.
The easiest way to get started is by using a UI library and for the purposes of this demonstration we’re going
to use the package @remirror/editor-wysiwyg
Firstly it needs to be installed.
yarn add @emotion/core @remirror/editor-wysiwyg
Then in your code use the following.
import { WysiwygEditor } from '@remirror/editor-wysiwyg';import React from 'react';export const MyWorldClassEditor = () => {return <WysiwygEditor />;};
So that’s a taste of a simplified Remirror
editor setup.