mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
20 lines
413 B
JavaScript
20 lines
413 B
JavaScript
import { html, Component } from "/lib/index.js";
|
|
|
|
export default function BufferHeader(props) {
|
|
var topic = null;
|
|
if (props.buffer.topic) {
|
|
topic = html`<span class="topic">${props.buffer.topic}</span>`;
|
|
}
|
|
|
|
function handlePartClick(event) {
|
|
event.preventDefault();
|
|
props.onClose();
|
|
}
|
|
|
|
return html`
|
|
${topic}
|
|
<span class="actions">
|
|
<a href="#" onClick=${handlePartClick}>Part</a>
|
|
</span>
|
|
`;
|
|
}
|