diff --git a/src/main/java/edu/ntnu/idatt2001/group_30/paths/view/components/table/LinkTable.java b/src/main/java/edu/ntnu/idatt2001/group_30/paths/view/components/table/LinkTable.java
new file mode 100644
index 0000000000000000000000000000000000000000..acc1e14eb57bd84a89d0205ac977d7ef6f3675c9
--- /dev/null
+++ b/src/main/java/edu/ntnu/idatt2001/group_30/paths/view/components/table/LinkTable.java
@@ -0,0 +1,17 @@
+package edu.ntnu.idatt2001.group_30.paths.view.components.table;
+
+/**
+ * This class concerns itself with the aspects intrinsic to a link table.
+ * @param <Link> The type of the table, represented using a Link object.
+ */
+public class LinkTable<Link> extends TableDisplay<Link>{
+
+    /**
+     * This is a constructor which is used to construct a table for different links.
+     *
+     * @param tableBuilder The builder used to construct a table, represented using an tableBuilder object.
+     */
+    public LinkTable(Builder<Link> tableBuilder) {
+        super(tableBuilder);
+    }
+}