market/src/components/molecules/PageHeader.stories.tsx

14 lines
406 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import PageHeader from './PageHeader'
export default {
title: 'Molecules/PageHeader'
}
export const Normal = () => (
<PageHeader
title="The Cool Page Header"
description="Blame the wizards! Hello, little man. I will destroy you! Ive been there. My folks were always on me to groom myself and wear underpants. What am I, the pope? Leelas gonna kill me."
/>
)