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" + >
+
+
+ ); +}