aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/components/HistoryList.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/HistoryList.tsx')
-rw-r--r--ui/src/components/HistoryList.tsx33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/src/components/HistoryList.tsx b/ui/src/components/HistoryList.tsx
deleted file mode 100644
index 948aa5c9..00000000
--- a/ui/src/components/HistoryList.tsx
+++ /dev/null
@@ -1,33 +0,0 @@
-import HistoryRow from "./history/HistoryRow";
-
-export default function HistoryList(props: any) {
- return (
- <div
- role="list"
- className="divide-y divide-gray-100 bg-white shadow-sm ring-1 ring-gray-900/5 overflow-auto"
- style={{
- height: `${props.height}px`,
- position: "relative",
- }}
- >
- {props.items.map((i: any) => {
- let h = props.history[i.index];
-
- return (
- <div
- style={{
- position: "absolute",
- top: 0,
- left: 0,
- width: "100%",
- height: `${i.size}px`,
- transform: `translateY(${i.start}px)`,
- }}
- >
- <HistoryRow h={h} />
- </div>
- );
- })}
- </div>
- );
-}