Skip to content
Snippets Groups Projects
Commit 15f5f0ff authored by RMidhunSuresh's avatar RMidhunSuresh
Browse files

Add a FooterView

parent 2f9178a8
No related branches found
No related tags found
No related merge requests found
import { TemplateView } from "hydrogen-view-sdk";
import chatterboxLogo from "../res/chat-bubbles.svg";
export class FooterView extends TemplateView {
render(t) {
return t.div({ className: "FooterView" },
[
t.div([
t.img({ src: chatterboxLogo, className: "FooterView_logo" }),
t.span({ className: "FooterView_chatterbox-branding" }, "Chatterbox"),
]),
t.div({ className: "FooterView_matrix-branding" }, ["Powered by Matrix"])
]);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment