WIP React > Svelte
Put most of the developed design into Svelte
This commit is contained in:
13
src/molecules/Location.svelte
Normal file
13
src/molecules/Location.svelte
Normal file
@@ -0,0 +1,13 @@
|
||||
<script>
|
||||
export let name
|
||||
export let slug
|
||||
export let country
|
||||
</script>
|
||||
|
||||
<div class="location" data-groups='["{country.continent.id}"]'>
|
||||
<a href="/location/{country.slug}/{slug}">
|
||||
<img src={country.flag.full_url} alt={'Flag of ' + country.name} />
|
||||
<h3 class="location__city">{name}</h3>
|
||||
<p class="location__country style-caps">{country.name}</p>
|
||||
</a>
|
||||
</div>
|
||||
Reference in New Issue
Block a user