Files
contentstack-imagevault/remix/app/routes/_index.tsx
2024-03-26 11:53:20 +01:00

16 lines
323 B
TypeScript

import type { MetaFunction } from '@remix-run/node';
export const meta: MetaFunction = () => {
return [
{ title: 'DAM: ImageVault integration' },
{
name: 'description',
content: 'Integration of ImageVault as a DAM for Contentstack',
},
];
};
export default function Index() {
return null;
}