diff --git a/src/options/routes/General.tsx b/src/options/routes/General.tsx
index 563f9ad..a8dbec1 100644
--- a/src/options/routes/General.tsx
+++ b/src/options/routes/General.tsx
@@ -1,7 +1,83 @@
+import { useState } from "react"
+import { Input } from "~/lib/components/Input"
+import { Label } from "~/lib/components/Label"
+import { Button } from "~/lib/components/Button"
+import { defaultConfig, getConfig, setConfig } from "~/lib/config"
+import {
+ Card,
+ CardContent,
+ CardHeader,
+ CardTitle,
+} from "~/lib/components/Card"
+import { Switch } from "~/lib/components/Switch"
+import { quickSubscriptions } from "~/lib/quick-subscriptions"
+
function General() {
+ const [config, setConfig] = useState(defaultConfig)
+ getConfig().then(setConfig)
+
return (
-
General
+
{chrome.i18n.getMessage("general")}
+
)
}