We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f67850 commit c6c46a9Copy full SHA for c6c46a9
__fixtures__/test-project-rsc-kitchen-sink/web/src/Routes.tsx
@@ -26,8 +26,10 @@ const Routes = () => {
26
<Route path="/multi-cell" page={MultiCellPage} name="multiCell" />
27
28
<Set wrap={BlogLayout}>
29
+ <Route path="/blog/new" page={NewBlogPostPage} name="newBlogPost" />
30
+ <Route path="/blog/{slug}/edit" page={EditBlogPostPage} name="editBlogPost" />
31
+ <Route path="/blog/{slug}" page={BlogPostPage} name="blogPost" />
32
<Route path="/blog" page={BlogPage} name="blog" />
- <Route path="/blog/{slug}" page={BlogPostPage} name="blogPost" />+{' '}
33
</Set>
34
35
<Set wrap={AuthLayout}>
0 commit comments