main

mattermost/focalboard

Last updated at: 29/12/2023 09:48

popup.tsx

TLDR

The provided file is a TypeScript file that renders a React component called PopupApp in a popup window.

Classes

There are no classes in this file.

Methods (if applicable)

There are no methods in this file.

// Copyright (c) 2021-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

import React from "react"
import ReactDOM from "react-dom"

import PopupApp from "./PopupApp"

const app = document.getElementById("app")
ReactDOM.render(<PopupApp/>, app)