cal.pub0.org/pages/index.tsx

17 lines
278 B
TypeScript
Raw Normal View History

export default function Home() {
return (
<div className="loader">
<span className="loader-inner"></span>
</div>
);
2021-05-11 13:11:17 +00:00
}
2021-03-22 13:48:48 +00:00
export async function getStaticProps() {
return {
redirect: {
destination: "/event-types",
permanent: false,
},
};
}