From 82404056ac4f14ffeaf88a522979c08cdd961522 Mon Sep 17 00:00:00 2001 From: Luca Lee <30341309+leeluca@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:30:53 +0900 Subject: [PATCH] docs(react): add missing .md extension to link paths in route-trees.md (#2252) --- docs/framework/react/guide/route-trees.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/framework/react/guide/route-trees.md b/docs/framework/react/guide/route-trees.md index 12132f537..b9ed2231f 100644 --- a/docs/framework/react/guide/route-trees.md +++ b/docs/framework/react/guide/route-trees.md @@ -61,9 +61,9 @@ The above is a valid route tree configuration that can be used with TanStack Rou Route trees can be configured using a few different ways: -- [Flat Routes](./file-based-routing#flat-routes) -- [Directories](./file-based-routing#directory-routes) -- [Mixed Flat Routes and Directories](./file-based-routing#mixed-flat-and-directory-routes) -- [Code-Based Routes](./code-based-routing) +- [Flat Routes](./file-based-routing.md#flat-routes) +- [Directories](./file-based-routing.md#directory-routes) +- [Mixed Flat Routes and Directories](./file-based-routing.md#mixed-flat-and-directory-routes) +- [Code-Based Routes](./code-based-routing.md) Please be sure to check out the full documentation links above for each type of route tree, or just proceed to the next section to get started with file-based routing.