summaryrefslogtreecommitdiff
path: root/src/components/ListItem.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ListItem.js')
-rw-r--r--src/components/ListItem.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/ListItem.js b/src/components/ListItem.js
index 661f8c2..b289c2e 100644
--- a/src/components/ListItem.js
+++ b/src/components/ListItem.js
@@ -1,5 +1,6 @@
import React from "react";
+import Button from "@mui/material/Button";
import Card from "@mui/material/Card";
class ListItem extends React.Component {
@@ -33,6 +34,9 @@ class ListItem extends React.Component {
{this.props.cve}
</Card>
</td>
+ <td>
+ <Button variant="contained">Re-scan</Button>
+ </td>
</tr>
);
}