impress-2020/pages/items/search/[query].tsx
Matchu f1cfd1ac8f [WIP] Migrate /items/search to Next.js routing
Okay I actually screwed up the layouts thing a bit! Because right, they need to *share* a LayoutComponent in order to share the UI across the pages. This gets a bit tricky with wanting to change the margin, too. I'll address this with an upcoming refactor!
2022-09-14 22:44:48 -07:00

5 lines
252 B
TypeScript

// Both of these routes are the same page! The query parameter is effectively
// optional: this is the route if you have it, and the other is the route if
// you don't.
import ItemSearchPageWrapper from "./index";
export default ItemSearchPageWrapper;