Files
kycnotme/web/src/components/AdminOnly.astro

12 lines
148 B
Plaintext
Raw Normal View History

2025-05-19 10:23:36 +00:00
---
import type { AstroChildren } from '../lib/astro'
type Props = {
children: AstroChildren
}
//
---
{!!Astro.locals.user?.admin && <slot />}