Initial frontend draft
This commit is contained in:
parent
1606d1faf0
commit
b6293beeec
21 changed files with 4105 additions and 150 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import type { Route } from "./+types/home";
|
||||
import { Welcome } from "../welcome/welcome";
|
||||
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
// eslint-disable-next-line no-empty-pattern
|
||||
export function meta({ }: Route.MetaArgs) {
|
||||
return [
|
||||
{ title: "New React Router App" },
|
||||
{ name: "description", content: "Welcome to React Router!" },
|
||||
|
|
@ -9,5 +9,7 @@ export function meta({}: Route.MetaArgs) {
|
|||
}
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />;
|
||||
return (
|
||||
<></>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue