2020-03-11 13:54:13 +01:00

17 lines
248 B
Svelte

<script>
export let finish = () => {};
</script>
<style>
a {
color: var(--primary);
text-decoration: none;
}
</style>
<p>
<a href="# " on:click={evt => evt.preventDefault() || finish(false)}>
Choose another Method
</a>
</p>