Fixed some todos and added the start of the dashboard

This commit is contained in:
2020-02-22 17:03:53 +01:00
parent 9dc003c9b0
commit 6ca0a99e78
12 changed files with 11010 additions and 14565 deletions
+17
View File
@@ -0,0 +1,17 @@
import React from 'react';
import BootstrapTable from 'react-bootstrap-table-next';
export default class Table extends React.Component<{
columns: any,
data: any
}> {
render () {
return (<div >
<BootstrapTable
bootstrap4
keyField='id'
columns={ this.props.columns }
data={ this.props.data } />
</div>)
}
}