mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-07 23:54:59 -05:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
|
|
import FavoritesView from "@/components/FavoritesView";
|
||
|
|
|
||
|
|
export default function Favorites() {
|
||
|
|
return (
|
||
|
|
<main>
|
||
|
|
<div className=" pt-[60px] p-4">
|
||
|
|
<FavoritesView />
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|