mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-17 00:04:56 +00:00
13 lines
299 B
JavaScript
13 lines
299 B
JavaScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import Widget from '../components/widget';
|
||
|
|
||
|
const component = <Widget />;
|
||
|
const el = document.createElement('div');
|
||
|
document.body.appendChild(el);
|
||
|
console.log('running bookmarklet');
|
||
|
ReactDOM.render(
|
||
|
component,
|
||
|
el,
|
||
|
);
|