summaryrefslogtreecommitdiff
path: root/examples/hackernews/src/components/Show.astro
blob: 7e08877849fff03b84b9e0188d84e7268b35fb51 (plain) (blame)
1
2
3
4
5
6
7
8
9
---
export interface Props<T> {
	when: T | number | boolean | undefined | null;
}

const { when } = Astro.props;
---

{!!when ? <slot /> : <slot name="fallback" />}