0.4.0 • Published 1 year ago

@ginpei/react-nice-markdown v0.4.0

Weekly downloads
5
License
MIT
Repository
github
Last release
1 year ago

@ginpei/react-nice-markdown

Install

$ npm i @ginpei/react-nice-markdown

Usage

import NiceMarkdown from '@ginpei/react-nice-markdown';
render () {
  const content = `
    # Hello World!

    This is a [React](http://reactjs.org/) component.
  `;
  return <NiceMarkdown content={content} />;
}