ESP8266-Firmware/web/src/components/RecentActivityWidget.jsx

31 lines
791 B
JavaScript

import React, { Component } from 'react'
import Card from './Card'
export class RecentActivityWidget extends Component {
render() {
return (
<Card>
<h4>Recent Activity</h4>
<hr />
<table>
<thead>
<tr>
<td>Name</td>
<td>Method</td>
<td>Time</td>
</tr>
</thead>
<tbody>
<tr>
<td>Max Mustermann</td>
<td>RFID</td>
<td>1.10.2020 08:30</td>
</tr>
</tbody>
</table>
</Card>
)
}
}
export default RecentActivityWidget