summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/overview.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/firefoxview/overview.mjs')
-rw-r--r--browser/components/firefoxview/overview.mjs35
1 files changed, 35 insertions, 0 deletions
diff --git a/browser/components/firefoxview/overview.mjs b/browser/components/firefoxview/overview.mjs
new file mode 100644
index 0000000000..1bad6fda6b
--- /dev/null
+++ b/browser/components/firefoxview/overview.mjs
@@ -0,0 +1,35 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+import { css, html } from "chrome://global/content/vendor/lit.all.mjs";
+import { ViewPage } from "./viewpage.mjs";
+
+class OverviewInView extends ViewPage {
+ constructor() {
+ super();
+ this.pageType = "overview";
+ }
+
+ connectedCallback() {
+ super.connectedCallback();
+ }
+
+ disconnectedCallback() {}
+
+ static get styles() {
+ return css`
+ div {
+ border: 1px solid black;
+ border-radius: 10px;
+ width: 100%;
+ }
+ }
+ `;
+ }
+
+ render() {
+ return html` <slot></slot> `;
+ }
+}
+customElements.define("view-overview", OverviewInView);