File indexing completed on 2025-05-04 05:30:58
0001 import React from 'react'; 0002 function Creator(props){ 0003 return( 0004 <div className="creatorrow row"> 0005 <div className="col-lg-2"> 0006 <a href={props.baseUrlStore+'/u/'+props.creator.username} > 0007 <figure > 0008 <img className="productimg" src={props.creator.profile_image_url} /> 0009 </figure> 0010 </a> 0011 </div> 0012 <div className="col-lg-6 userinfo"> 0013 <div className="userinfo-title">{props.creator.username}</div> 0014 </div> 0015 <div className="col-lg-4"> 0016 <span><img style={{width:'15px',height:'15px', float:'left',marginRight:'2px'}} src={props.baseUrlStore+'/images/system/pling-btn-active.png'}></img> 0017 {props.creator.cnt} 0018 <span className="colorGrey">{' ('+props.creator.sum_plings_all+')'}</span> 0019 </span> 0020 0021 </div> 0022 </div> 0023 ) 0024 } 0025 0026 export default Creator;