Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
*/
import { BaseAboutNewTabComponentRegistrant } from "moz-src:///browser/components/newtab/AboutNewTabComponents.sys.mjs";
export class TestRegistrant1 extends BaseAboutNewTabComponentRegistrant {
getComponents() {
return [
{
type: "SEARCH",
tagName: "test-component",
l10nURLs: [],
},
];
}
}