UNPKG

mantis-app

Version:

M.A.N.T.I.S (MongoDB, Analog, Nx, Tailwind CSS, Ionic, Storybook) is not just a CLI tool; it's your passport to a seamless full-stack project launch.

18 lines (15 loc) 415 B
import type { Meta, StoryObj } from '@storybook/angular'; import { AddTodoComponent } from './add-todo.component'; const meta: Meta<AddTodoComponent> = { component: AddTodoComponent, title: 'AddTodoComponent', parameters: { layout: 'centered', }, argTypes: { add: { action: 'added' } }, }; export default meta; type Story = StoryObj<AddTodoComponent>; export const Primary: Story = { args: {}, };