mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 04:31:39 +10:00
wip
This commit is contained in:
13
apps/remix/app/routes/home.tsx
Normal file
13
apps/remix/app/routes/home.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { Welcome } from '../welcome/welcome';
|
||||
import type { Route } from './+types/home';
|
||||
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
return [
|
||||
{ title: 'New React Router App' },
|
||||
{ name: 'description', content: 'Welcome to React Router!' },
|
||||
];
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />;
|
||||
}
|
||||
Reference in New Issue
Block a user