Update AdventureCard component to include regionId and visited properties, and add country flag support

This commit is contained in:
Sean Morley
2024-04-14 20:33:58 +00:00
parent 715a4ffd87
commit a550fd58f7
10 changed files with 548 additions and 1 deletions

View File

@@ -89,6 +89,7 @@
{#each data.regions as region (region.id)}
<AdventureCard
type="worldtravelregion"
countryCode={data.countrycode}
regionId={region.id}
name={region.name}
on:markVisited={markVisited}