// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import 'renderer/css/components/HoveringURL.css'; const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); import React from 'react'; import ReactDOM from 'react-dom'; import UrlDescription from '../../components/urlDescription'; const start = async () => { ReactDOM.render( , document.getElementById('app'), ); }; start();