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