UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

15 lines (11 loc) 286 B
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> ) })