mhsf-dev/src/app/account/favorites/page.tsx

12 lines
213 B
TypeScript
Raw Normal View History

2024-07-23 18:49:21 -05:00
import FavoritesView from "@/components/FavoritesView";
export default function Favorites() {
return (
<main>
2024-08-08 18:02:46 -05:00
<div className="pt-[60px] p-4">
2024-07-23 18:49:21 -05:00
<FavoritesView />
</div>
</main>
);
}