diff --git a/web/src/screens/Logs.tsx b/web/src/screens/Logs.tsx index a55ad48..8a5fc56 100644 --- a/web/src/screens/Logs.tsx +++ b/web/src/screens/Logs.tsx @@ -1,5 +1,6 @@ import { useEffect, useRef, useState } from "react"; import { APIClient } from "../api/APIClient"; +import {ExclamationIcon} from "@heroicons/react/solid"; type LogEvent = { time: string; @@ -32,12 +33,19 @@ export const Logs = () => {
-

Logs

+

Logs

+
+
-
+
{logs.map((a, idx) => (

{a.time} @@ -54,4 +62,4 @@ export const Logs = () => {

) -} \ No newline at end of file +}