2025-01-31 19:34:22 +08:00
|
|
|
import { Welcome } from '~/pages/welcome'
|
2025-01-30 15:40:30 +08:00
|
|
|
|
2025-01-30 18:00:01 +08:00
|
|
|
import type { Route } from './+types/_layout._index'
|
2025-01-30 14:24:13 +08:00
|
|
|
|
|
|
|
|
export function meta({}: Route.MetaArgs) {
|
|
|
|
|
return [
|
2025-01-30 15:40:30 +08:00
|
|
|
{ title: 'New React Router App' },
|
|
|
|
|
{ name: 'description', content: 'Welcome to React Router!' },
|
|
|
|
|
]
|
2025-01-30 14:24:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
2025-01-30 15:40:30 +08:00
|
|
|
return <Welcome />
|
2025-01-30 14:24:13 +08:00
|
|
|
}
|