mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
chore(examples): add routify set-up
This commit is contained in:
parent
a4aa2d9c77
commit
1d479eb835
16 changed files with 2885 additions and 0 deletions
14
examples/routify/src/pages/_fallback.svelte
Normal file
14
examples/routify/src/pages/_fallback.svelte
Normal file
|
@ -0,0 +1,14 @@
|
|||
<script>
|
||||
import { url } from "@sveltech/routify";
|
||||
import { Row, Column, Link } from "carbon-components-svelte";
|
||||
</script>
|
||||
|
||||
<Row>
|
||||
<Column lg="{16}">
|
||||
<h1>404</h1>
|
||||
<div>
|
||||
Page not found.
|
||||
<Link inline href="{$url('..')}">Return home</Link>
|
||||
</div>
|
||||
</Column>
|
||||
</Row>
|
Loading…
Add table
Add a link
Reference in a new issue