@b3w/pp-portal
v0.3.5
Published
React popup using portal
Downloads
72
Readme
Little popup with link and close button
Example
import PrivacyPolicy from '@b3w/pp-portal';
import '@b3w/pp-portal/dist/portal-bundle.css';
const App = () => {
const text = 'Hello world, <a href="/">link</a>.';
return (
<div>
<PrivacyPolicy
dangerousText={text}
/>
</div>
);
}