Created
February 24, 2021 15:15
-
-
Save Nipodemos/9b3b16b8e6db888a0e2ed31b58385d57 to your computer and use it in GitHub Desktop.
Reddit question
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
| <script lang="ts"> | |
| import { routes } from "./routes"; | |
| </script> | |
| <main> | |
| <h1>Available routes:</h1> | |
| {#each Object.keys(routes) as route} | |
| {route}: "{routes[route].path}" | |
| {/each} | |
| </main> |
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
| <script> | |
| </script> | |
| <h1>Home page</h1> | |
| <style> | |
| </style> |
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
| import Home from "./home.svelte"; | |
| export const routes = { | |
| home: { | |
| path: "/", | |
| component: Home, | |
| }, | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment