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