storybook/docs/snippets/react/app-story-with-mock.js.mdx
2022-07-07 19:47:29 +01:00

35 lines
645 B
Plaintext

```js
// App.stories.js|jsx
import React from 'react';
import App from './App';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'App',
component: App,
};
export const Success = {
parameters: {
fetch: {
json: {
JavaScript: 3390991,
'C++': 44974,
TypeScript: 15530,
CoffeeScript: 12253,
Python: 9383,
C: 5341,
Shell: 5115,
HTML: 3420,
CSS: 3171,
Makefile: 189,
},
},
},
};
```