diff --git a/src/pages/Status/components/StatusItem/StatusItem.jsx b/src/pages/Status/components/StatusItem/StatusItem.jsx new file mode 100644 index 0000000..4c67101 --- /dev/null +++ b/src/pages/Status/components/StatusItem/StatusItem.jsx @@ -0,0 +1,15 @@ +import './styles.sass'; + +const StatusItem = (props) => ( +
+
+

{props.service}

+
+
+
+ {props.shards.map(shard =>
{shard.name}
)} +
+
+) + +export default StatusItem; \ No newline at end of file