POTUS Tracker

The US President is in {data?.getData?.city ?? "n/a"}

Official Presidential Schedule

{#each Object.entries(groupedByDate) as [date, items], indexA}
{date}

{#each items as item, indexB}
{#if indexA === 0 && indexB === 0} {/if}
{item.time_formatted} - {item.location}
{item.details}
{/each}
{/each}

Latest Legislations

{#each billData as item}
{item?.badge} {item?.time !== null ? item?.time : ""}

{item?.title}

{item?.description?.length > 150 ? item?.description?.slice(0, 150) + "..." : item?.description}

{/each}