react-portal-decorator
v0.1.1
Published
Decorator for portals!
Downloads
3
Readme
react-portal-decorator
npm install --save react-portal-decorator
import React, { Component } from 'react';
import inPortal from 'react-portal-decorator';
@inPortal('render-div-id')
class MyComponent extends Component {
return (
<div>
Hello, world!
<br />
This will be in the div '#render-div-id'
</div>
);
}
The decorator works by creating a higher-order component that renders your component into a div with the id specified when calling the decorator