mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
9 lines
183 B
Text
9 lines
183 B
Text
import { useRouter } from "next/router";
|
|
export const Query = () => {
|
|
const { query } = useRouter();
|
|
return <pre>{JSON.stringify(query, null, " ")}</pre>;
|
|
};
|
|
|
|
# Query
|
|
|
|
<Query />
|