import React from "react" import { Typography } from "antd" import { ChevronRightIcon } from "@heroicons/react/24/outline" const { Title } = Typography type Props = { Header: React.ReactNode showButton?: boolean onClick?: () => void } export const DataNavigation: React.FC = ({ Header, showButton = true, onClick }) => { return (
{/* 左侧部分 */}
{Header}
{/* 右侧部分 */} {showButton && (
更多
)}
) }