From e5a9e22f7b502f4d3c506ac5aca6100533131a8f Mon Sep 17 00:00:00 2001 From: Muhammad Izza Alfiansyah Date: Wed, 10 Apr 2024 18:04:22 +0700 Subject: [PATCH] make histori page --- website/src/Router.tsx | 2 ++ website/src/pages/Histori.tsx | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 website/src/pages/Histori.tsx diff --git a/website/src/Router.tsx b/website/src/Router.tsx index 8cc7ddc..a5a8c57 100644 --- a/website/src/Router.tsx +++ b/website/src/Router.tsx @@ -1,6 +1,7 @@ import { Route, Router } from "@solidjs/router"; import Index from "./pages/Index"; import Pengujian from "./pages/Pengujian"; +import Histori from "./pages/Histori"; interface Props { root: any; @@ -11,6 +12,7 @@ export default function (props: Props) { + ); } diff --git a/website/src/pages/Histori.tsx b/website/src/pages/Histori.tsx new file mode 100644 index 0000000..e78d2ee --- /dev/null +++ b/website/src/pages/Histori.tsx @@ -0,0 +1,40 @@ +import Table from "../components/Table"; + +export default function () { + return ( +
+
+ SUKSES, + ], + [ + "23 Maret 2024", + "6 Jam", + "25- 35 C", + GAGAL, + ], + [ + "22 Maret 2024", + "24 Jam", + "30 - 40 C", + SUKSES, + ], + [ + "24 Maret 2024", + "24 Jam", + "30 - 40 C", + SUKSES, + ], + ]} + class="my-5" + >
+
+
+ ); +}