#recursive map in template

2 messages · Page 1 of 1 (latest)

somber charm
#

Hello, is there an easy way to recursive map in a template?

{
x.map(y => 
  <img src="{y}"/>
  y.map( z =>
    <img src="{z}"/>
    z.map( h => 
    .......
}
light tusk