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