
* MM-62005 Change UrlView to always stay mounted * Rename message for URL view and corresponding methods * Change log level
19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import 'renderer/css/components/HoveringURL.css';
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import UrlDescription from '../../components/urlDescription';
|
|
|
|
const start = async () => {
|
|
ReactDOM.render(
|
|
<UrlDescription/>,
|
|
document.getElementById('app'),
|
|
);
|
|
};
|
|
|
|
start();
|