Files
mattermostest/src/renderer/modals/urlView/urlView.tsx
Harrison Healey 9d26b01ef5 MM-62005 Change UrlView to always stay mounted (#3453)
* MM-62005 Change UrlView to always stay mounted

* Rename message for URL view and corresponding methods

* Change log level
2025-07-04 09:37:13 -04:00

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();