calcom/pages/index.tsx

13 lines
192 B
TypeScript
Raw Normal View History

export default function Home() {
return null;
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,
},
};
}