2
0
Files
cal/calcom/apps/web/pages/routing-forms/index.tsx
2024-08-09 00:39:27 +02:00

13 lines
220 B
TypeScript

export default function RoutingFormsIndex() {
return null;
}
export const getServerSideProps = () => {
return {
redirect: {
destination: `/apps/routing-forms/forms`,
permanent: false,
},
};
};