* Update naming of guidelines section and improve Introduction page * Add Docs * Add docs * Install Docs add-on - Rename top-level folders and sort manually - Add MDX static pages * Updated all Storybook addons to 6.1.3 except for notes as it's currently 5.3.21 * Fixed naming of section for the select component. * Updated yarn.lock file. * Added missing dependency @storybook/addon-docs Co-authored-by: Nick Taylor <nick@dev.to>
12 lines
398 B
JavaScript
12 lines
398 B
JavaScript
import { h } from 'preact';
|
|
|
|
import { PodcastEpisode } from '../PodcastEpisode';
|
|
import { podcastArticle } from '../../articles/__tests__/utilities/articleUtilities';
|
|
|
|
import '../../../assets/stylesheets/articles.scss';
|
|
|
|
export default { title: 'App Components/Podcasts/Episode' };
|
|
|
|
export const Standard = () => <PodcastEpisode episode={podcastArticle} />;
|
|
|
|
Standard.story = { name: 'standard' };
|