Files
kycnotme/web/src/components/AdminOnly.astro
2025-05-19 10:23:36 +00:00

12 lines
148 B
Plaintext

---
import type { AstroChildren } from '../lib/astro'
type Props = {
children: AstroChildren
}
//
---
{!!Astro.locals.user?.admin && <slot />}