RoyTimes / materialize_blog

Blog system based on React.js & Material-UI
http://blog.ziorix.com
196 stars 45 forks source link

How to Dynamic TableRow #3

Open cbyniiaii opened 8 years ago

cbyniiaii commented 8 years ago

like this?

{this.rows.map(row => )}

let {data, ...others} = this.props return ( <TableRow {...others}>

{data.id}
    <TableRowColumn>{data.name}</TableRowColumn>
</TableRow>

)