0.1.3 • Published 2 years ago

@rebecarose/react-markdown-editor v0.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

React Markdown Editor

React Markdown is available as an npm package.

Installation

- with npm
npm install @rebecarose/react-markdown-editor

- with yarn
yarn add @rebecarose/react-markdown-editor

Getting started with React Markdown Editor

View the Demo and its source for more.

import React, {useState} from 'react';
import { MarkdownEditor } from '@rebecarose/react-markdown-editor';


const App = () => {
    const [value, setValue] = useState('');
    return (
        <MarkdownEditor
            value={value}
            onChange={e => setValue(e)}
        />
    )
}