1
0
cvsa/packages/temp_frontend/app/components/Title.tsx

12 lines
276 B
TypeScript

import { useEffect } from "react";
import { useLocation } from "react-router";
export const Title = ({ title }: { title: string }) => {
let location = useLocation();
useEffect(() => {
document.title = title + " - 中V档案馆";
}, [title, location]);
return null;
};