9 lines
158 B
Text
9 lines
158 B
Text
---
|
|
interface Props<T> {
|
|
when: T | number | boolean | undefined | null;
|
|
}
|
|
|
|
const { when } = Astro.props;
|
|
---
|
|
|
|
{!!when ? <slot /> : <slot name="fallback" />}
|