import { useContext } from "react"; import { LanguageContext } from "../Locales/Context"; import { GetLocalizedString } from "../Locales/Locales"; const defaultPathName = 'index'; function Topbar() { var language = useContext(LanguageContext); let path = getTopbarElement(window.location.pathname); return (

View from the edge

{GetLocalizedString(path, language)}

); } // Extracts the black part thing from the path function getTopbarElement(fullPath: string): string { let path = fullPath.replace('/', ''); if (path.length === 0) { path = defaultPathName; } return path.split('/')[0]; } export default Topbar;