Listing Clothes
<%= for {shop, map_of_clothes_by_type} <- @clothes_map do %>
<%= shop %>
<%= for {type, list_of_clothes} <- map_of_clothes_by_type do %>
<%= type %>
Name |
Color |
Game |
|
<%= for clothes <- list_of_clothes do %>
<%= live_component PokemonCoutureWeb.Components.ClothesComponent, id: clothes.id, clothes: clothes, user: @user %>
<% end %>
<% end %>
<% end %>