Prettified Code!

This commit is contained in:
gabek 2022-04-22 20:03:34 +00:00 committed by GitHub Action
parent 635e872be3
commit 8b7e2b945e

View File

@ -81,7 +81,9 @@ export default class FollowerList extends Component {
return html`
<div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
<div
class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"
>
${followers.length === 0 && noFollowersInfo}
${followers.map((follower) => {
return html` <${SingleFollower} user=${follower} /> `;