blob: 9b7271184cc6dba389b09276d247880dcf4d57a7 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {LitElement} from 'chrome://resources/lit/v3_0/lit.rollup.js';
import {getHtml} from './foo.html.js';
export class CrFooElement extends LitElement {
override render() {
return getHtml.bind(this)();
}
}