feat: Onboarding

This commit is contained in:
Wanjohi
2024-09-16 21:10:33 +03:00
parent 58e93b28e9
commit f2f3386bdb
8 changed files with 462 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
import { component$ } from "@builder.io/qwik";
import { useLocation } from "@builder.io/qwik-city";
export default component$(() => {
const location = useLocation()
return (
<div>{location.params.id}</div>
)
})