11 lines
161 B
Svelte
11 lines
161 B
Svelte
<script lang="ts">
|
|
import RatingEditor from '$lib/components/rating/RatingEditor.svelte';
|
|
</script>
|
|
|
|
<RatingEditor
|
|
rating={{
|
|
comment: '',
|
|
rating: 5
|
|
}}
|
|
/>
|