This commit is contained in:
night0721 2022-01-09 05:35:42 +08:00
parent bbab44277b
commit 3f27eb643e

9
pages/github.js Normal file
View file

@ -0,0 +1,9 @@
import { useRouter } from "next/router";
import { useEffect } from "react";
export default function Github() {
const page = useRouter();
useEffect(() => {
page.push("http://github.com/night0721");
}, []);
return () => null;
}