Description:
Yet another markdown editor for React, with support with responsive layout and light/dark themes.
How to use it:
1. Install and import the Yamde.
# NPM
$ npm i yamde
import React, { useState } from ‘react’
import Yamde from ‘yamde’
2. Create a default markdown editor in the app.
export const App = () => {
const [text, setText] = useState('')
return <Yamde value={text} handler={setText} theme="light/dark" />
}





