POC frontend setup w/ static data.

This commit is contained in:
2021-01-03 16:35:54 +01:00
parent 446a50e6f7
commit d8b718273b
11 changed files with 312 additions and 0 deletions

15
frontend/routes.js Normal file
View File

@@ -0,0 +1,15 @@
import LandingPage from '@/pages/LandingPage';
import PostPage from '@/pages/PostPage';
const routes = [
{
path: "/",
component: LandingPage
},
{
path: "/post/:id",
component: PostPage
}
]
export { routes };