main

mattermost/focalboard

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

options.tsx

TLDR

This file is responsible for rendering the OptionsApp component in a web extension.

Classes

OptionsApp

The OptionsApp component is rendered in the web extension. It is responsible for displaying the options page of the extension.

// 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 OptionsApp from "./OptionsApp"

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