Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AdelBeit committed Jun 4, 2023
1 parent f0a4486 commit c684b4a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions example/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,14 @@ function App() {
className="flex flex-col z-10 bg-white gap-1 p-1"
data-theme="cyberpunk"
>
{[...Array(30).fill(0)].map(i =>
<div key={i} className="card bg-primary">
{[...Array(30).fill(0)].map((i, _i) => (
<div key={_i} className="card bg-primary">
<div className="card-body">
<h2 className="card-title justify-center text-secondary">
Content
</h2>
<h2 className="card-title justify-center text-black">Content</h2>
</div>
</div>
)}

))}
</div>

</div>
);
}
Expand Down

0 comments on commit c684b4a

Please sign in to comment.