jnfrati 4 лет назад
Родитель
Сommit
824e3e7e8f
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      dashboard/src/components/EventLogs.tsx

+ 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;