mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
- Newline following filename comment - Fix URLs in comments - Ensure consistent usage of `ts` vs `tsx` language
33 lines
534 B
Plaintext
33 lines
534 B
Plaintext
```ts
|
|
// App.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
title: 'App',
|
|
component: 'demo-app',
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj;
|
|
|
|
export const Success: Story = {
|
|
parameters: {
|
|
fetch: {
|
|
json: {
|
|
JavaScript: 3390991,
|
|
'C++': 44974,
|
|
TypeScript: 15530,
|
|
CoffeeScript: 12253,
|
|
Python: 9383,
|
|
C: 5341,
|
|
Shell: 5115,
|
|
HTML: 3420,
|
|
CSS: 3171,
|
|
Makefile: 189,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|