/* -------------------------------------------------------------------------- */ /* Libraries */ /* -------------------------------------------------------------------------- */ import React from "react"; import { useNavigate } from "react-router-dom"; import { Transition } from "@headlessui/react"; /* -------------------------------------------------------------------------- */ /* Hooks */ /* -------------------------------------------------------------------------- */ import { useTranslation } from "react-i18next"; /* -------------------------------------------------------------------------- */ /* Components */ /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ /* Icons */ /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ /* Component */ /* -------------------------------------------------------------------------- */ export default function GlobalControls() { /* ------------------------ // Navigation hook usage ------------------------ */ const navigate = useNavigate(); const {t} = useTranslation(); /* -------------------------------- Component ------------------------------- */ return ( <> ); }