Skip to content

Commit 6426b31

Browse files
committedMay 10, 2021
prettier
1 parent 63d9223 commit 6426b31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/components/Tag.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ function Tag({ tags, ...props }) {
99
return (
1010
<div {...props}>
1111
{tags.map(tag => (
12-
<Link key={tag} className="badge badge-primary font-weight-normal" to={`/tags/${tag}/`}>
12+
<Link
13+
key={tag}
14+
className="badge badge-primary font-weight-normal"
15+
to={`/tags/${tag}/`}
16+
>
1317
{tag}
1418
</Link>
1519
))}

0 commit comments

Comments
 (0)
Please sign in to comment.