We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2587326 commit e9bd7f7Copy full SHA for e9bd7f7
README.md
@@ -1 +1,26 @@
1
# html-react-parser
2
+
3
+An HTML to React parser.
4
5
+```js
6
+var Parser = require('html-react-parser');
7
+var reactElement = Parser('<p>Hello, world!</p>');
8
9
+// ReactDOM.render(reactElement, node);
10
+```
11
12
+## Installation
13
14
+```sh
15
+$ npm install html-react-parser
16
17
18
+## Testing
19
20
21
+$ npm test
22
23
24
+## License
25
26
+[MIT](https://github.com/remarkablemark/html-react-parser/blob/master/LICENSE)
0 commit comments