Initialize frontend.
This commit is contained in:
parent
75ad3c2182
commit
c2c1d1c8ed
25 changed files with 8397 additions and 4 deletions
13
frontend/app/routes/home.tsx
Normal file
13
frontend/app/routes/home.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import type { Route } from './+types/home'
|
||||
import { Welcome } from '../welcome/welcome'
|
||||
|
||||
export function meta(_: Route.MetaArgs) {
|
||||
return [
|
||||
{ title: 'New React Router App' },
|
||||
{ name: 'description', content: 'Welcome to React Router!' },
|
||||
]
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue