cal.pub0.org/apps/web/pages/routing-forms/index.tsx

13 lines
220 B
TypeScript
Raw Normal View History

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