<script>
// importing other components
import Faces from './Faces.svelte'
let count = 0
const incrementCount = () => {
count++
}
</script>
<style>
h3, button {
font-family: Verdana, Arial, sans-serif;
}
</style>
<h3>
Button was clicked {count} {count === 1 ? 'time' : 'times'}
</h3>
<button on:click|preventDefault={incrementCount}>
Increment count
</button>
<h3>
Imported component:
</h3>
<Faces/>