Files
web/components/Loyalty/Sidebar/JoinLoyalty/Contact/index.tsx
2024-04-29 14:01:21 +02:00

9 lines
250 B
TypeScript

import { Lang } from "@/constants/languages"
import { serverClient } from "@/lib/trpc/server"
export default function Contact({ lang }: { lang: Lang }) {
const data = serverClient().contentstack.contactConfig.get({ lang })
return <div></div>
}