Files
WRNexusJS/packages/ui/components/ProductPageShell.wrn
T
2026-07-22 12:56:07 +05:30

14 lines
325 B
Plaintext

component ProductPageShell {
props {
class = ""
}
view {
<main
class=" min-h-screen w-full overflow-x-clip bg-[var(--wire-color-bg,#ffffff)] font-[var(--wire-font-sans,ui-sans-serif,system-ui,sans-serif)] text-[var(--wire-color-text,#0f172a)] antialiased {class} "
>
<slot />
</main>
}
}