fix: don't wrap Statistics component contents in <section> element
This commit is contained in:
parent
5c17f9d9d5
commit
869833b34a
1 changed files with 10 additions and 12 deletions
|
@ -3,7 +3,6 @@ import NumberTicker from "../widgets/num-tick";
|
|||
|
||||
const Statistics = () => {
|
||||
return (
|
||||
<section>
|
||||
<div className="grid grid-cols-2 lg:grid-cols-4 gap-8">
|
||||
{stats.map(({ title, count }) => (
|
||||
<div key={title} className="space-y-2 text-center">
|
||||
|
@ -14,7 +13,6 @@ const Statistics = () => {
|
|||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue