import { NavLink, Outlet } from 'react-router-dom'; const TABS = [ { to: '/', end: true, icon: 'home', label: '首页', fillActive: false }, { to: '/stores', icon: 'storefront', label: '门店', fillActive: true }, { to: '/benefit', icon: 'card_giftcard', label: '好客权益', fillActive: false }, { to: '/mine', icon: 'person', label: '我的', fillActive: true }, ] as const; export default function TabLayout() { return ( <> ); }