This commit is contained in:
parent
4dffc731b6
commit
ff2a4d2f58
2 changed files with 2 additions and 4 deletions
|
@ -7,7 +7,6 @@
|
|||
export let route: App.Route;
|
||||
const dispatch = createEventDispatcher();
|
||||
|
||||
let props;
|
||||
let ref: HTMLDivElement;
|
||||
let component = InfoTab;
|
||||
onMount(() => {
|
||||
|
@ -40,8 +39,6 @@
|
|||
};
|
||||
</script>
|
||||
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<div id="container">
|
||||
<div id="tabs" on:click={activeClicked}>
|
||||
<button id="info" class="active">Info</button>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
import BottomAppBar from '$lib/components/BottomAppBar.svelte';
|
||||
import Toast from '$lib/components/Toast.svelte';
|
||||
import { onMount } from 'svelte';
|
||||
import { onNavigate } from '$app/navigation';
|
||||
|
||||
let node: HTMLElement;
|
||||
|
||||
|
|
Loading…
Reference in a new issue