import { html, Component } from "/lib/index.js"; export default function BufferHeader(props) { var topic = null; if (props.buffer.topic) { topic = html`${props.buffer.topic}`; } function handlePartClick(event) { event.preventDefault(); props.onClose(); } return html` ${topic} Part `; }