Repository URL to install this package:
Version:
0.9.6 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import SkipNav from 'src/components/features/SkipNav'
storiesOf('features/SkipNav', module)
.add('default', () => <SkipNav />)
.add('className', () => <SkipNav className="story" />)
.add('className + children', () => (
<SkipNav className="story" children="eh" />
))