mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 09:31:47 +08:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import type { Meta, StoryFn } from '@storybook/angular';
|
|
import { AppComponent } from '../app/app.component';
|
|
|
|
export default {
|
|
title: 'Welcome/ To Angular',
|
|
} as Meta;
|
|
|
|
export const ToAngular: StoryFn = () => ({
|
|
component: AppComponent,
|
|
props: {
|
|
showApp: () => {},
|
|
},
|
|
});
|