'use client' import { FavoritesListEmpty, PageContainer, ProfileLayout } from 'components' import { useTitle } from '@/hooks' const Lists = () => { useTitle('我的收藏') //? Render(s) return (

您的收藏夹列表为空

(即将上线)
) } export default Lists