diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 60dc6f6..6660091 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -10,7 +10,6 @@ import { TableHead, TableRow, Container, - IconButton, Box, } from "@mui/material"; import AddIcon from "@mui/icons-material/Add"; @@ -121,6 +120,30 @@ const Home = () => { ))} + {results && ( + + + + Name + XPath + Text + + + + {Object.keys(results).map((key, index) => ( + + {results[key].map((result, resultIndex) => ( + + {result.name} + {result.xpath} + {result.text} + + ))} + + ))} + +
+ )} );