main

mattermost/focalboard

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

popup.html

TLDR

This file is an HTML document that serves as the view for a popup window in a web extension.

popup.html

This HTML file is the view for a popup window in a web extension. It contains a basic HTML structure with a <div> element that acts as a placeholder for the application content. The file also includes a <script> tag that references a "popup.tsx" file, which is responsible for rendering the application component inside the popup window.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
  </head>
  <body>
    <div id="app"></div>
    <script type="module" src="popup.tsx"></script>
  </body>
</html>