A React Microsoft Word Container
Demo available at http://stonelinks.org/MSWordContainer/
npm install --save mswordcontainer
const React = require('react')
const ReactDOM = require('react-dom')
const MSWordContainer = require('mswordcontainer')
ReactDOM.render(
<MSWordContainer title={"example.doc"}>
<p>
Hey there, this is an example of the MSWordContainer in all its glory.
</p>
</MSWordContainer>,
document.getElementById('container')
)
title
- string Title of the document
MIT