8 lines
137 B
Svelte
8 lines
137 B
Svelte
|
<script lang="ts">
|
||
|
import type { Building } from "../types";
|
||
|
|
||
|
export let building: Building;
|
||
|
</script>
|
||
|
|
||
|
<p>{ building.name }</p>
|