Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | import type { Meta, StoryObj } from '@storybook/react'; import Title from './Title'; const meta = { title: 'COMPONENTS/title/Title', component: Title, parameters: { layout: 'fullscreen', }, } satisfies Meta<typeof Title>; export default meta; type Story = StoryObj<typeof meta>; export const AllRentalItems: Story = { args: { title: '貸し出し中物品管理', }, }; export const AllRentalItem: Story = { args: { title: '貸し出し中物品管理', }, }; export const AllTrashItems: Story = { args: { title: '削除物品情報の履歴', }, }; export const Color: Story = { args: { title: 'ケーブル識別色管理', }, }; export const Connector: Story = { args: { title: '端子名管理', }, }; export const Generate: Story = { args: { title: 'ラベル / csv の生成', }, }; export const RegisterItem: Story = { args: { title: '物品情報の登録', }, }; export const UpdateItem: Story = { args: { title: '物品情報の更新', }, }; |