import * as React from 'react'; import { Hero as HeroComponent } from './Hero'; export default { title: 'Atoms/Hero', component: HeroComponent, args: { topSpacing: 75, bottomSpacing: 25, }, }; export const Hero = ({ topSpacing, bottomSpacing }) => { return (

This is it.

); }; type WrapperProps = { children: React.ReactNode; topSpacing: number; bottomSpacing: number; }; const StoryWrapper = ({ topSpacing, bottomSpacing, ...props }: WrapperProps) => (
topSpacing
bottomSpacing
{props.children}
);