github
This commit is contained in:
parent
bbab44277b
commit
3f27eb643e
1 changed files with 9 additions and 0 deletions
9
pages/github.js
Normal file
9
pages/github.js
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue