el.xwx.moe/pages/links.tsx

15 lines
337 B
TypeScript
Raw Normal View History

2023-03-28 02:31:50 -05:00
import LinkList from "@/components/LinkList";
import useLinkStore from "@/store/links";
export default function Links() {
const { links } = useLinkStore();
return (
<div className="p-5 flex flex-col gap-5 w-full">
{links.map((e, i) => {
return <LinkList key={i} link={e} count={i} />;
})}
</div>
);
}