Erant-OldApp/src/App.svelte

22 lines
288 B
Svelte

<script>
import { Router, link, Route } from 'svelte-routing'
import './main.scss'
import Game from './routes/game.svelte'
</script>
<main>
<Router>
<Route path="/">
<Game />
</Route>
</Router>
</main>
<style lang="scss">
main {
height: 100%;
width: 100%;
}
</style>