diff --git a/esoui/ingame/help/keyboard/helpscreentemplate_keyboard.lua b/esoui/ingame/help/keyboard/helpscreentemplate_keyboard.lua
new file mode 100644
index 0000000..95645f3
--- /dev/null
+++ b/esoui/ingame/help/keyboard/helpscreentemplate_keyboard.lua
@@ -0,0 +1,16 @@
+ZO_HelpScreenTemplate_Keyboard = ZO_Object:Subclass()
+
+function ZO_HelpScreenTemplate_Keyboard:New(...)
+    local object = ZO_Object.New(self)
+    object:Initialize(...)
+    return object
+end
+
+function ZO_HelpScreenTemplate_Keyboard:Initialize(control, data)
+	self.control = control
+	control.owner = self
+
+	if data then 
+		HELP_CUSTOMER_SUPPORT_KEYBOARD:AddCategory(data)
+	end
+end
\ No newline at end of file