Changes as per the React development guidelines. (Changed the file extensions to JSX)

This commit is contained in:
Menaka Jayawardena 2017-09-07 20:14:39 +05:30
parent b70bf91f3a
commit a2e2abc7db
19 changed files with 0 additions and 3 deletions

View File

@ -77,7 +77,6 @@ class DataTable extends Component {
this.props.handleRowClick(id); this.props.handleRowClick(id);
} }
render() { render() {
const {data, headers} = this.state; const {data, headers} = this.state;
@ -111,9 +110,7 @@ class DataTable extends Component {
</TableBody> </TableBody>
</Table>) </Table>)
} }
return (<div>{noDataContent}</div>); return (<div>{noDataContent}</div>);
} }
} }