storybook/docs/snippets/react/component-story-static-asset-cdn.ts.mdx
2022-07-07 19:47:29 +01:00

19 lines
462 B
Plaintext

```ts
// MyComponent.stories.ts|tsx
import React from 'react';
import type { Meta } from '@storybook/react';
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: 'img',
} as Meta;
export const WithAnImage = {
render: () => <img src="https://place-hold.it/350x150" alt="My CDN placeholder" />,
};
```