1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

added arrow navigation for swiper

This commit is contained in:
Fedor Katurov 2021-03-12 10:09:56 +07:00
parent 983bf6f3e0
commit c5288e0f80
5 changed files with 23 additions and 5 deletions

View file

@ -11,7 +11,6 @@ const FlowRecent: FC<IProps> = ({ recent, updated }) => {
return (
<>
{updated && updated.map(node => <FlowRecentItem node={node} key={node.id} has_new />)}
{recent && recent.map(node => <FlowRecentItem node={node} key={node.id} />)}
</>
);