Files
shadcn-ui/apps/v4/app/(create)/preview/layout.tsx
shadcn df1752dfe0 feat: rhea (#10779)
* feat: add rhea

* fix: blocks

* feat: build chat example

* fix

* fix: sidebar

* fix

* feat: update home

* fix

* fix

* fix

* feat: optimizine fonts

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix: font in preview

* fix
2026-05-26 22:54:07 +04:00

16 lines
388 B
TypeScript

import { PreviewFontVariables } from "@/app/(create)/preview/font-variables"
import { previewFontVariables } from "@/app/(create)/preview/fonts"
export default function PreviewLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<div className={previewFontVariables}>
<PreviewFontVariables className={previewFontVariables} />
{children}
</div>
)
}