()
| 16 | l10n.mapToLocal(); |
| 17 | |
| 18 | function init() { |
| 19 | const query = new URLSearchParams(document.location.search); |
| 20 | // component id |
| 21 | const id = query.get('id') || ''; |
| 22 | // component used as a container (client API) |
| 23 | const embedded = str2bool(query.get('embedded') || false); |
| 24 | const root = document.createElement('div'); |
| 25 | ReactDOM.render(<DecryptMessage id={id} embedded={embedded} />, document.body.appendChild(root)); |
| 26 | } |