react-markdown-native
v1.1.1
Published
Render Markdown as React native components
Downloads
8
Maintainers
Readme
react-markdown-native
This project provides react native components for react-markdown
. The code is heavily inspired by react-markdown.
Install
npm install --save react-markdown-native
Basic usage
import Markdown from 'react-markdown-native';
// Render
return (
<View>
<Markdown source={markdown}/>
</View>
);