rm unused story

This commit is contained in:
Vargha Csongor
2025-04-29 08:29:02 +00:00
parent 39431de08a
commit 2cf59b8313

View File

@@ -1,20 +0,0 @@
import type { Meta, StoryObj } from '@storybook/svelte';
import SignInPage from './+page.svelte';
const meta = {
title: 'login/+page',
component: SignInPage,
tags: ['autodocs']
} satisfies Meta<typeof SignInPage>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
render: () => {
return {
Component: SignInPage
};
}
};