diff --git a/ui/react-app/src/views/ViewStatus.tsx b/ui/react-app/src/views/ViewStatus.tsx index b43b6e9a..b3357428 100644 --- a/ui/react-app/src/views/ViewStatus.tsx +++ b/ui/react-app/src/views/ViewStatus.tsx @@ -1,6 +1,8 @@ import { Chip, Container, + List, + ListItem, SxProps, Table, TableCell, @@ -65,6 +67,26 @@ export default function ViewStatus() { + + + Peers + + + + {data.cluster.peers.map((peer, i) => { + return ( + +

+ Name: {peer.name} +
+ Address: {peer.address} +

+
+ ); + })} +
+
+
Version Information