Files
contentstack-imagevault/remix/app/routes/_index.tsx
2024-03-26 13:03:24 +01:00

16 lines
319 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
}