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 | import type { Meta, StoryObj } from '@storybook/angular';
import { ForAngularCommonModule } from 'src/lib/for-angular-common.module';
import { getComponentMeta } from './utils';
import { ModelRendererComponent } from 'src/lib/components/model-renderer/model-renderer.component';
import { ForAngularModel } from 'src/app/models/DemoModel';
import { OperationKeys } from '@decaf-ts/db-decorators';
import { NgComponentOutlet } from '@angular/common';
import { LoginForm } from 'src/app/forms/LoginForm';
import { LoginPage } from 'src/app/pages/login/login.page';
import { ForAngularComponentsModule } from 'src/lib/components/for-angular-components.module';
import { IonCard, IonCardContent, IonImg } from '@ionic/angular/standalone';
import './setup';
const component = getComponentMeta<LoginPage>(
[ForAngularComponentsModule, IonCard, IonImg],
'page'
);
const meta: Meta<LoginPage> = {
title: 'Pages/Login',
component: LoginPage,
...component,
args: {
model: new LoginForm({}),
},
};
export default meta;
type Story = StoryObj<LoginPage>;
export const init: Story = { args: {} };
|