1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/pages/query/[path].mdx

10 lines
183 B
Text
Raw Normal View History

2019-07-09 17:11:41 +09:00
import { useRouter } from "next/router";
export const Query = () => {
const { query } = useRouter();
return <pre>{JSON.stringify(query, null, " ")}</pre>;
};
# Query
<Query />