react-practice icon indicating copy to clipboard operation
react-practice copied to clipboard

render_props_demo目录中文件小错误

Open sunchenguang opened this issue 6 years ago • 0 comments

render_props_demo/src/Auth.js 中是使用props.nologout

<React.Fragment>
      {props.nologout(props)}
 </React.Fragment>

但是,App.js中使用nologin, 不匹配

<Auth
       login={({userName}) => <h1>Hello {userName}</h1>}
       nologin={() => <h1>Please login</h1>}
 />

sunchenguang avatar Sep 01 '19 07:09 sunchenguang