UNPKG

pdh-design-system

Version:

PDH Design System React Components

24 lines (20 loc) 476 B
import React from "react" import { IntroBanner } from "./IntroBanner" export default { title: "organisms/Intro Banner", component: IntroBanner, argTypes: {}, parameters: {}, } const Template = (args) => { return ( <IntroBanner {...args}> <p>Into banner example text</p> </IntroBanner> ) } export const _IntroBanner = Template.bind({}) _IntroBanner.args = { src: "https://placehold.co/600x600", title: "Header", }