5

我有一个组件“项目”和一个容器。容器有一个延迟加载功能,我用它来加载项目。所以我必须触发该功能,以显示项目。如何触发故事书中的功能?

// Container.js with Item component
        <Item
          key={post.id}
          lazyLoading={this.lazyloading.bind(this)} //I need to trigger this function, to load the posts     
          text={this.props.text}
          styles={this.props.styles}
        />



// Item.stories.js
    let key = 1;
    let text = "test";
    let styles = { 
      backgroundColor: 'red',
    }
    storiesOf('Item', module).add(
  'default',
  (() => (
    <Item
      key={key}
      text={text}
      styles={styles}
      lazyLoadingImage={} // How can I call this function? 
    />
  ))
);
4

0 回答 0