import React from 'react'
import { storiesOf } from '@storybook/react'
import SearchInput from './SearchInput'
const stories = storiesOf('Core|Search Input', module)
stories.add('Search Input', () => {
return (
<div className="bg-haze">
<SearchInput />
</div>
)
})