Skip to content

Commit

Permalink
Disable focus indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
akunzai committed Sep 7, 2021
1 parent f8410c0 commit faa8ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import TodoList from './todo/TodoList.svelte';
</script>

<Router>
<Router primary={false}>
<NavMenu title={document.title} />
<main class="container">
<Route path="/" component={Home}/>
<Route component={Home}/>
<Route path="/counter" component={Counter} />
<Route path="/todo-list" component={TodoList} />
<Route path="/todo/:id" component={TodoDetail} />
Expand Down

0 comments on commit faa8ee2

Please sign in to comment.