+ {this.props.headers.map((header, index) => {
+ return (
+
this.setSelected(header.name)}
+ >
+ {header.title}
+
+ )
+ })}
+
+ )
+ }
+}
diff --git a/src/ui/components/mods/ModList.css b/src/ui/components/mods/ModList.css
new file mode 100644
index 0000000..4d80ffe
--- /dev/null
+++ b/src/ui/components/mods/ModList.css
@@ -0,0 +1,6 @@
+.ModList {
+ width: 100%;
+ height: 100%;
+
+ background-color: rgba(106, 105, 106, 0.6);
+}
diff --git a/src/ui/components/mods/ModList.tsx b/src/ui/components/mods/ModList.tsx
new file mode 100644
index 0000000..41ce62d
--- /dev/null
+++ b/src/ui/components/mods/ModList.tsx
@@ -0,0 +1,21 @@
+import React from 'react'
+
+import './ModList.css'
+
+interface IProps {
+ sort: string
+}
+
+interface IState {
+ modList: string[]
+}
+
+export class ModList extends React.Component