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