itsa-react-docviewer
React component that views documents using Google Doc Viewer.
How to use:
const ReactDOM = require("react-dom"),
Component = require("itsa-react-docviewer");
const props = {
allowFullScreen: true,
src: "http://projects.itsasbreuk.nl/react-components/itsa-docviewer/example.pdf"
};
ReactDOM.render(
<Component {...props} />,
document.getElementById("component-container")
);
About the css
You need the right css in order to make use of itsa-react-checkbox
. There are 2 options:
- You can use the css-files inside the
css
-folder. - You can use:
Component = require("itsa-react-docviewer/lib/component-styled.jsx");
and build your project withwebpack
. This is needed, because you need the right plugin to handle a requirement of thescss
-file.