Lemoncode / simplechart

Simplechart seed
MIT License
12 stars 13 forks source link

Map page should display description plus tags #32

Open brauliodiez opened 6 years ago

brauliodiez commented 6 years ago

Steps 1:

<MapPagelayout description={this.state.description} tags={this.state.tags}>
  // Specifid map markup
</MapPagelayout>

And in MapPageLayout something like (pseudocode)

./src/common/components/MapPageLayout.tsx

export const MapPageLayout = (props : Props) => 
<Map>
  {children}
</Map>
<Description description={props.description}/>
<Tags tags={props.tags}/>