diff --git a/integration/helpers/node-template/app/routes/_index.tsx b/integration/helpers/node-template/app/routes/_index.tsx
index d35260cb00..ecfc25c614 100644
--- a/integration/helpers/node-template/app/routes/_index.tsx
+++ b/integration/helpers/node-template/app/routes/_index.tsx
@@ -2,40 +2,15 @@ import type { MetaFunction } from "react-router";
export const meta: MetaFunction = () => {
return [
- { title: "New Remix App" },
- { name: "description", content: "Welcome to Remix!" },
+ { title: "New React Router App" },
+ { name: "description", content: "Welcome to React Router!" },
];
};
export default function Index() {
return (
-
Welcome to Remix
-
+
Welcome to React Router
);
}
diff --git a/integration/helpers/vite-template/app/routes/_index.tsx b/integration/helpers/vite-template/app/routes/_index.tsx
index d35260cb00..ecfc25c614 100644
--- a/integration/helpers/vite-template/app/routes/_index.tsx
+++ b/integration/helpers/vite-template/app/routes/_index.tsx
@@ -2,40 +2,15 @@ import type { MetaFunction } from "react-router";
export const meta: MetaFunction = () => {
return [
- { title: "New Remix App" },
- { name: "description", content: "Welcome to Remix!" },
+ { title: "New React Router App" },
+ { name: "description", content: "Welcome to React Router!" },
];
};
export default function Index() {
return (
-
Welcome to Remix
-
+
Welcome to React Router
);
}
diff --git a/packages/react-router-dev/__tests__/fixtures/node/app/routes/_index.tsx b/packages/react-router-dev/__tests__/fixtures/node/app/routes/_index.tsx
index d35260cb00..ecfc25c614 100644
--- a/packages/react-router-dev/__tests__/fixtures/node/app/routes/_index.tsx
+++ b/packages/react-router-dev/__tests__/fixtures/node/app/routes/_index.tsx
@@ -2,40 +2,15 @@ import type { MetaFunction } from "react-router";
export const meta: MetaFunction = () => {
return [
- { title: "New Remix App" },
- { name: "description", content: "Welcome to Remix!" },
+ { title: "New React Router App" },
+ { name: "description", content: "Welcome to React Router!" },
];
};
export default function Index() {
return (
-
Welcome to Remix
-
+
Welcome to React Router
);
}