diff --git a/src/screens/Dashboard/pages/Settings/Settings.tsx b/src/screens/Dashboard/pages/Settings/Settings.tsx index 7fabadd..ea28fd9 100644 --- a/src/screens/Dashboard/pages/Settings/Settings.tsx +++ b/src/screens/Dashboard/pages/Settings/Settings.tsx @@ -1,8 +1,10 @@ -import { Component } from "solid-js"; +import { Component, createSignal } from "solid-js"; import Toolbar from "./components/Toolbar"; import { FiSettings } from "solid-icons/fi"; const Settings: Component = () => { + const [currentSection, setCurrentSection] = createSignal(0); + return (