mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-29 18:54:36 +01:00
17 lines
256 B
Svelte
17 lines
256 B
Svelte
<script lang="ts">
|
|
import type { IRoom } from "$types/rooms";
|
|
|
|
export let room: IRoom;
|
|
</script>
|
|
|
|
<div class="room">
|
|
<h3>{room.name}</h3>
|
|
<p>{room.description}</p>
|
|
</div>
|
|
|
|
<style>
|
|
.room {
|
|
border: solid thin #353e52;
|
|
padding: 8px 12px;
|
|
}
|
|
</style>
|