Untitled
unknown
plain_text
5 months ago
811 B
3
Indexable
import React from 'react' function TaskComponent(props){ const { event } = props; return ( <div className='roww g-2' > <div className='col text-truncate'> <b style={{fontSize:12}} >{event.title}</b> </div> <div className='col-auto'> <div className='roww g-1 align-items-baseline'> {/* <div className='col-auto'> <img className='avatar rounded-circle bg-l25-primary' src={event.user.avatar} width='18' height='18' /> </div> */} {/* <small className='col-auto text-truncate text-dark'>{ event.title }</small> */} </div> </div> </div> ) } export default TaskComponent
Editor is loading...
Leave a Comment