Files
WRNexusJS/packages/ui/components/ProductPageShell.wrn
T
2026-07-22 01:26:10 +05:30

19 lines
381 B
Plaintext

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