Iterated with translations

This commit is contained in:
Henrik Larsson
2023-05-03 15:16:42 +02:00
parent a1ae2357db
commit 603bd2b880
41 changed files with 1373 additions and 214 deletions

View File

@@ -0,0 +1,19 @@
'use client'
import dynamic from 'next/dynamic'
const DynamicContentManager = dynamic(
() => import('components/ui/dynamic-content-manager')
)
interface SinglePageProps {
data: any
}
const SinglePage = ({ data }: SinglePageProps) => {
return (
<DynamicContentManager content={data?.content} />
)
}
export default SinglePage