improvements
This commit is contained in:
@@ -7,12 +7,10 @@ export default function ListView({
|
||||
links: LinkIncludingShortenedCollectionAndTags[];
|
||||
}) {
|
||||
return (
|
||||
<div>
|
||||
<div className="flex flex-col border border-neutral-content bg-base-200 rounded-md">
|
||||
{links.map((e, i) => {
|
||||
return <LinkRow key={i} link={e} count={i} />;
|
||||
})}
|
||||
</div>
|
||||
<div className="flex flex-col">
|
||||
{links.map((e, i) => {
|
||||
return <LinkRow key={i} link={e} count={i} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user