Skip to content

Commit 3e05b2f

Browse files
committed
Prettier
1 parent 96b78b8 commit 3e05b2f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

components/Category/Categories.component.jsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,17 @@ import { v4 as uuidv4 } from 'uuid';
66
* @param {Object} categories
77
*/
88
const Categories = ({ categories }) => {
9-
109
return (
1110
<>
12-
1311
<section className="container mx-auto bg-white">
14-
1512
<div className="flex ">
16-
1713
{categories.map(({ name }) => (
1814
<div
1915
key={uuidv4()}
2016
className="flex flex-col justify-around p-6 cursor-pointer xs:w-1/2 md:w-1/3 xl:w-1/4"
2117
>
2218
<div className="flex items-center justify-center w-full h-16 text-center border border-gray-300 rounded-lg shadow hover:shadow-outline">
2319
<p className="text-lg">{name}</p>
24-
2520
</div>
2621
</div>
2722
))}

0 commit comments

Comments
 (0)