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

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

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