From d282934112994bac4791d3a3ed23af530331470f Mon Sep 17 00:00:00 2001 From: Tetiana Mohorian Date: Tue, 29 Apr 2025 22:44:57 +0000 Subject: [PATCH] Odstranit sk1/frontend/src/components/Historia.jsx --- sk1/frontend/src/components/Historia.jsx | 35 ------------------------ 1 file changed, 35 deletions(-) delete mode 100644 sk1/frontend/src/components/Historia.jsx diff --git a/sk1/frontend/src/components/Historia.jsx b/sk1/frontend/src/components/Historia.jsx deleted file mode 100644 index a1a6be6..0000000 --- a/sk1/frontend/src/components/Historia.jsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -const Historia = ({ history }) => { - if (!history || history.length === 0) { - return

Zatiaľ žiadna história

; - } - - return ( -
-
- - - {history.map((item, index) => ( - - - - - - ))} - -
{item.text} - - {item.prediction} - - {item.timestamp}
-
-
- ); -}; - -export default Historia;