Last active
April 10, 2024 19:30
-
-
Save helabenkhalfallah/38cde89c18362cfa15575addaae4472b to your computer and use it in GitHub Desktop.
Svelte App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- App.svelte --> | |
<script> | |
import { Router, Route } from 'svelte-routing'; | |
import Home from './routes/Home.svelte'; | |
import About from './routes/About.svelte'; | |
</script> | |
<Router> | |
<Route path="/" component={Home} /> | |
<Route path="/about" component={About} /> | |
</Router> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment