mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
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>
|
|
)
|
|
}) |