= [];
static styles = [
css`
.container {
display: grid;
gap: 0.5em;
grid-template-columns: minmax(0, 1fr);
width: 100%;
}
`,
];
render() {
if (!this.messages?.length) return nothing;
return html`
${map(this.messages, (message) => {
if (message.type == "public") {
return html``;
} else return nothing;
})}
`;
}
}