Init carousel component

This commit is contained in:
Vadim
2021-01-19 20:41:46 +03:00
parent 108f097473
commit 7b6bb0e959

10
src/ImageCarousel.svelte Normal file
View File

@@ -0,0 +1,10 @@
<script>
export let title = 'Hello';
</script>
<main>
<h1>{title}</h1>
</main>
<style>
</style>