import React from 'react'; import ButtonComponent from './ButtonComponent'; import tmrykLogo from '../assets/images/tmryk-logo-small.png'; import { Link, useLocation } from 'react-router-dom'; import theme from '../theme'; function HeaderComponent() { const location = useLocation(); const selectedColor = "border-b-4 border-gray-500"; const unselectedColor = ""; const commonStyling = `hover:bg-gray-200 ${theme.primary_text_color}` const isSelected = (route) => location.pathname === route; return (
tmryk logo {/* TODO: Change /model/2 to /model/:id*/} {/* */}
); } export default HeaderComponent;