summaryrefslogtreecommitdiffhomepage
path: root/src/components/CloseWindow.tsx
blob: 247e794aa1dd3342e2efd752d916e7537147acd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//import { Link } from "react-router-dom";

//export default () => (
export default function Home () {

	window.close();
	window.location.replace("/");

	return(
		<>
		</>
	);
}