React component to allow 3rd party components to operate over DOM-tree (d3, three.js)
React component to allow 3rd party components to operate over DOM-tree (d3, three.js)



``sh`
npm install --save react react-bulkhead
Don't forget to manually install peer dependencies (react) if you use npm@3.
`htmlReactBulkhead
(Module exposed as )`
http://nkbt.github.io/react-bulkhead
https://codepen.io/nkbt/pen/RVYrwN
js
import React from 'react';
import ReactDOM from 'react-dom';
import {ReactBulkhead} from 'react-bulkhead';
const onCreate = ({element}) => {
element.innerHTML = 'Gotcha! Mutable DOM here';
};
const App = () => (
);const appRoot = document.createElement('div');
document.body.appendChild(appRoot);
ReactDOM.render( , appRoot);
`
Options
`js
// TODO
``MIT