Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit f5f7e2b

Browse files
committed
Add link
1 parent b4739a3 commit f5f7e2b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/content/docs/building-apps/quick-start.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ Most of the time, we have multiple routes that we want to map an incoming reques
149149

150150
In filesystem routing contexts like Next.js, we can just export our routes as-is from route handler files (or their equivalent).
151151

152+
[Learn more](/docs/integrations/full-stack) about integrating with full-stack frameworks.
153+
152154
### Manual Routing
153155

154156
For explicit routing, we can use a router from the `@webroute/router` package to help us map requests to the various route handlers we have.
@@ -167,7 +169,7 @@ import { createRadixRouter } from "@webroute/router";
167169
import { Route } from "@webroute/route";
168170
import { AppRoutes } from "./routes";
169171

170-
// Create an array of { path, method, payload } for AppRoutes
172+
// Creates an array of { path, method, payload } for AppRoutes
171173
const routeList = Object.values(AppRoutes).map(Route.normalise);
172174

173175
const router = createRadixRouter(routeList);

0 commit comments

Comments
 (0)