UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

16 lines (13 loc) 270 B
import React from 'react' import SearchInput from './SearchInput' export default { title: 'Core/Search Input', component: SearchInput } export const _SearchInput = args => { return ( <div className="bg-haze"> <SearchInput {...args} /> </div> ) }