Named export for unextended FindBar component

This commit is contained in:
Cássio Zen 2016-07-06 19:07:42 -03:00
parent bc68fe73b5
commit 45de85d693
2 changed files with 3 additions and 3 deletions

View File

@ -270,5 +270,5 @@ FindBar.propTypes = {
dispatch: PropTypes.func.isRequired, dispatch: PropTypes.func.isRequired,
}; };
export { FindBar }
module.exports = FindBar; export default connect()(FindBar);

View File

@ -1,7 +1,7 @@
import React from 'react'; import React from 'react';
import { storiesOf, action } from '@kadira/storybook'; import { storiesOf, action } from '@kadira/storybook';
import FindBar from '../FindBar'; import { FindBar } from '../FindBar';
const commands = [ const commands = [
{ pattern: 'Create new Collection(:collectionName)' }, { pattern: 'Create new Collection(:collectionName)' },