import React from 'react' import { Link, useLocation } from 'react-router-dom' export const Header: React.FC = () => { const location = useLocation() const isShelf = location.pathname === '/' || location.pathname.startsWith('/books') return (
书架 Library
) }