rating-room/src/lib/Layout/Header.svelte

10 lines
191 B
Svelte
Raw Normal View History

2022-07-11 01:16:16 +00:00
<script>
export let reset;
const {title} = {
title: 'hover:bg-blue-300 text-lg font-bold m-12 ml-0 pl-12',
}
</script>
<a href="/" class={title} on:click={reset} >
Rating Room
</a>