mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
38 lines
741 B
Plaintext
38 lines
741 B
Plaintext
```ts
|
|
// App.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'App',
|
|
component: AppComponent,
|
|
} as Meta;
|
|
|
|
const Template: Story = () => ({
|
|
props: {},
|
|
});
|
|
|
|
export const Success = Template.bind({});
|
|
Success.parameters = {
|
|
fetch: {
|
|
json: {
|
|
JavaScript: 3390991,
|
|
'C++': 44974,
|
|
TypeScript: 15530,
|
|
CoffeeScript: 12253,
|
|
Python: 9383,
|
|
C: 5341,
|
|
Shell: 5115,
|
|
HTML: 3420,
|
|
CSS: 3171,
|
|
Makefile: 189,
|
|
},
|
|
},
|
|
};
|
|
``` |