imnya.ng/app/routes/timeline.tsx
imnyang 03c2871cbd asdf
2025-01-20 18:19:41 +09:00

22 lines
454 B
TypeScript

import type { Route } from "./+types/timeline";
import React from "react";
import { useNavigate } from "react-router";
export function meta({}: Route.MetaArgs) {
return [
{ title: "암냥" },
{ name: "description", content: "Student Developer" },
];
}
export default function Timeline() {
const navigate = useNavigate();
React.useEffect(() => {
navigate("/#timeline");
}, [navigate]);
return (
<h1>Redirecting</h1>
);
}