Show layer table

This commit is contained in:
Lukas Martinelli
2016-12-24 15:24:22 +01:00
parent 0c483cffe3
commit 8f561d8a27
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import React from 'react'
class FeatureLayerTable extends React.Component {
render() {
const feature = this.props.feature
const rows = <tr>
<td className="debug-prop-key">{feature.layer.id}</td>
</tr>
return <table
style={{
color: 'black',
}}
className="debug-props">
<tbody>{rows}</tbody>
</table>;;
}
}
export default FeatureLayerTable