Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var Breadcrumb=React.createClass({
  2.  
  3. goToPath : function (i){
  4. this.props.fmg.openBreadCrumbs(this.props.index);
  5. },
  6.  
  7. render : function (){
  8. return(
  9. <a href="#" onClick={this.goToPath}>{this.props.text} ></a>
  10. );
  11. }
  12. });
  13.  
  14. module.exports = Breadcrumb;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement