chore: add configuration files for linting, formatting, and husky pre-commit hooks
This commit is contained in:
+7
-6
@@ -1,13 +1,14 @@
|
||||
import type { Route } from "./+types/home";
|
||||
import { Welcome } from "../welcome/welcome";
|
||||
import { Welcome } from '~/layouts/home/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!" },
|
||||
];
|
||||
{ title: 'New React Router App' },
|
||||
{ name: 'description', content: 'Welcome to React Router!' },
|
||||
]
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />;
|
||||
return <Welcome />
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user