diff --git a/src/LogsPage.tsx b/src/LogsPage.tsx new file mode 100644 index 0000000..edc8163 --- /dev/null +++ b/src/LogsPage.tsx @@ -0,0 +1,42 @@ +import React, { useState } from "react"; +import NamespaceSelector from "./components/NamespaceSelector"; +import PodTree from "./components/PodTree"; +import LogViewer from "./components/LogViewer"; +import Toolbar from "./components/Toolbar"; + +export default function LogsPage() { + const [namespace, setNamespace] = useState("default"); + const [selection, setSelection] = useState(null); + const [regex, setRegex] = useState(""); + const [live, setLive] = useState(true); + + return ( +
+ {/* LEFT PANEL */} +
+

Logs

+ + + + + + +
+ + {/* RIGHT PANEL */} +
+ +
+
+ ); +} \ No newline at end of file