Initial commit
This commit is contained in:
12
app/routes/home.tsx
Normal file
12
app/routes/home.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { HomePage } from "../pages/home/HomePage";
|
||||
|
||||
export function meta() {
|
||||
return [
|
||||
{ title: "React Starter" },
|
||||
{ name: "description", content: "Welcome to React!" },
|
||||
];
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <HomePage />;
|
||||
}
|
||||
6
app/routes/person.tsx
Normal file
6
app/routes/person.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { PersonPage } from "../pages/person/PersonPage";
|
||||
|
||||
|
||||
export default function Person() {
|
||||
return <PersonPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user