Improve layer colors

This commit is contained in:
lukasmartinelli
2016-09-09 11:29:18 +02:00
parent 73e36a22bf
commit 1ae5594d9a
6 changed files with 81 additions and 61 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react'
import ReactMapboxGl from "react-mapbox-gl"
import theme from './theme.js'
export class Map extends React.Component {
constructor(props) {
@@ -11,8 +12,8 @@ export class Map extends React.Component {
return <ReactMapboxGl
style={this.props.mapStyle}
accessToken="pk.eyJ1IjoibW9yZ2Vua2FmZmVlIiwiYSI6IjIzcmN0NlkifQ.0LRTNgCc-envt9d5MzR75w"/>
}
return <div />
}
return <div style={{backgroundColor: theme.colors.black}}/>
}
}