Skip to content

Commit 88a2545

Browse files
committed
🐞 fix: width and height in pokemon example react
1 parent 8f55a17 commit 88a2545

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

docs/src/components/examples/react/GroupOfListsOfPokemons.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export const GroupOfListsOfPokemons: React.FC = () => {
4545
listOfPokemons.map((pokemon, index) => (
4646
<PokemonComponent
4747
key={pokemon.name}
48-
className="min-w-44 max-sm:min-w-32"
4948
index={index}
5049
pokemon={pokemon}
5150
/>
@@ -60,7 +59,6 @@ export const GroupOfListsOfPokemons: React.FC = () => {
6059
listOfPokemons2.map((pokemon, index) => (
6160
<PokemonComponent
6261
key={pokemon.name}
63-
className="min-w-44 max-sm:min-w-32"
6462
index={index}
6563
pokemon={pokemon}
6664
/>
@@ -75,7 +73,6 @@ export const GroupOfListsOfPokemons: React.FC = () => {
7573
listOfPokemons3.map((pokemon, index) => (
7674
<PokemonComponent
7775
key={pokemon.name}
78-
className="min-w-44 max-sm:min-w-32"
7976
index={index}
8077
pokemon={pokemon}
8178
/>

0 commit comments

Comments
 (0)