2
0
jnfrati 4 жил өмнө
parent
commit
824e3e7e8f

+ 13 - 0
dashboard/src/components/EventLogs.tsx

@@ -0,0 +1,13 @@
+import { Event } from "main/home/cluster-dashboard/expanded-chart/events/EventsTab";
+import React from "react";
+
+type EventLogsProps = {
+  event: Event;
+  goBack: () => void;
+};
+
+const EventLogs: React.FunctionComponent<EventLogsProps> = ({}) => {
+  return <div>Show logs</div>;
+};
+
+export default EventLogs;