diff --git a/frontend/src/components/DatasetConfig.tsx b/frontend/src/components/DatasetConfig.tsx new file mode 100644 index 0000000..f061cea --- /dev/null +++ b/frontend/src/components/DatasetConfig.tsx @@ -0,0 +1,159 @@ +import tiger from '../assets/logo.png'; +import { useNavigate } from 'react-router-dom'; + +function DatasetConfig() { + const navigate = useNavigate(); + + const goToHome = () => { + navigate('/main'); + } + + const goToCodebooks = () => { + navigate('/Codebooks'); + } + + const goToDatasets = () => { + navigate('/Datasets'); + } + + return ( +
+ + +
+
+ +
+
+
+
+
+
+
Label
+ +
+
+
Codebook
+ +
+
+
Private
+
+
+
+
+
+
+
Description
+ +
+
Coder Assignment
+
+ +
+
+
+
+
+
+ + + + + + + + + + + + + + + + + +
+ Username + + Email + + Rows + + Progess +
+ User 1 + + user1@email.com + + 1-10 + + 10%(1/10) +
+
+
+
+ ); +} +export default DatasetConfig;