react16-markdown-native
v1.1.6
Published
Render Markdown as React(16) native components
Downloads
1
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 react16-markdown-native
yarn add react16-markdown-native
Basic usage
import Markdown from 'react16-markdown-native';
// Render
return (
<View>
<Markdown source={markdown}/>
</View>
);