import type TimeSelectionInputs from "./TimeSelectionInputs.js"; import Input from "./Input.js"; import SegmentedButton from "./SegmentedButton.js"; import SegmentedButtonItem from "./SegmentedButtonItem.js"; export default function TimeSelectionInputsTemplate(this: TimeSelectionInputs) { return (
{this._entities.map(entity => ( <> { entity.hasSeparator && : } ))} {this._periods.length > 0 && <> {this._periods.map(period => {period.label} )} }
); }