Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Last active April 10, 2024 19:30
Show Gist options
  • Save helabenkhalfallah/38cde89c18362cfa15575addaae4472b to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/38cde89c18362cfa15575addaae4472b to your computer and use it in GitHub Desktop.
Svelte App
<!-- 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