0.4.0 • Published 11 months ago
@b3w/pp-portal v0.4.0
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>
);
}