mirror of
https://github.com/gotson/komga.git
synced 2026-01-15 12:42:02 +01:00
remove page stories
This commit is contained in:
parent
506c80e63f
commit
8d207d2fea
2 changed files with 0 additions and 52 deletions
|
|
@ -1,25 +0,0 @@
|
|||
import type { Meta, StoryObj } from '@storybook/vue3-vite'
|
||||
|
||||
import login from './login.vue'
|
||||
|
||||
const meta = {
|
||||
component: login,
|
||||
render: (args: object) => ({
|
||||
components: { login },
|
||||
setup() {
|
||||
return { args }
|
||||
},
|
||||
template: '<login />',
|
||||
}),
|
||||
parameters: {
|
||||
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
|
||||
},
|
||||
args: {},
|
||||
} satisfies Meta<typeof login>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {},
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
import type { Meta, StoryObj } from '@storybook/vue3-vite'
|
||||
|
||||
import users from './users.vue'
|
||||
|
||||
const meta = {
|
||||
component: users,
|
||||
render: (args: object) => ({
|
||||
components: { users },
|
||||
setup() {
|
||||
return { args }
|
||||
},
|
||||
template: '<users />',
|
||||
}),
|
||||
parameters: {
|
||||
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
|
||||
},
|
||||
args: {},
|
||||
// This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/writing-docs/autodocs
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof users>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {},
|
||||
}
|
||||
Loading…
Reference in a new issue