hypnagaga/src/components/AdSlot/InlineAd.stories.svelte
2025-02-07 12:48:42 +00:00

20 lines
447 B
Svelte

<script module lang="ts">
import AdScripts from './AdScripts.svelte';
import InlineAd from './InlineAd.svelte';
import { defineMeta } from '@storybook/addon-svelte-csf';
const { Story } = defineMeta({
title: 'Components/Ads & analytics/InlineAd',
component: InlineAd,
});
</script>
{#snippet template()}
<div>
<AdScripts />
<InlineAd />
<InlineAd />
</div>
{/snippet}
<Story name="Demo" children={template} />