import { Button } from "@kobalte/core/button"; import { FolderPicker } from "./components/folder-picker/FolderPicker"; import { Shortcuts } from "./components/shortcuts/Shortcuts"; export const Settings = () => { const logout = () => { localStorage.removeItem("access"); localStorage.removeItem("refresh"); window.location.href = "/login"; }; return ( <>

Settings

); };