Rename BlogPostPage -> ArticlePage

This commit is contained in:
Rob Cameron
2022-02-08 14:49:01 -08:00
parent 9ca3046cc4
commit ab61793bcf
6 changed files with 23 additions and 19 deletions

View File

@@ -26,6 +26,12 @@ const Routes = () => {
<Route path="/admin/posts" page={PostPostsPage} name="posts" />
</Set>
</Private>
<Set wrap={BlogLayout}>
<Route path="/contact" page={ContactPage} name="contact" />
<Route path="/article/{id:Int}" page={ArticlePage} name="article" />
<Route path="/about" page={AboutPage} name="about" />
<Route path="/" page={HomePage} name="home" />
</Set>
<Route notfound page={NotFoundPage} />
</Router>
)