Skip to content

Commit

Permalink
fix example imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoji Chen committed Jan 2, 2020
1 parent 3ce5a6f commit 3855092
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/additional-overlays/src/app.js
Expand Up @@ -27,8 +27,8 @@ import Immutable from 'immutable';
import ScatterplotOverlay from './scatterplot-overlay';
import ChoroplethOverlay from './choropleth-overlay';

import ZIPCODES_SF from '../../data/feature-example-sf.json';
import CITIES from '../../data/cities.json';
import ZIPCODES_SF from '../../.data/feature-example-sf.json';
import CITIES from '../../.data/cities.json';

const MAPBOX_TOKEN = ''; // Set your mapbox token here

Expand Down
2 changes: 1 addition & 1 deletion examples/controls/src/app.js
Expand Up @@ -6,7 +6,7 @@ import ControlPanel from './control-panel';
import Pins from './pins';
import CityInfo from './city-info';

import CITIES from '../../data/cities.json';
import CITIES from '../../.data/cities.json';

const TOKEN = ''; // Set your mapbox token here

Expand Down
2 changes: 1 addition & 1 deletion examples/reuse-map/src/bart-map.js
@@ -1,7 +1,7 @@
import React, {Component} from 'react';
import MapGL, {Marker} from '../../../src';

import bartStations from '../../data/bart-station.json';
import bartStations from '../../.data/bart-station.json';

const MAPBOX_TOKEN = ''; // Set your mapbox token here

Expand Down
2 changes: 1 addition & 1 deletion examples/viewport-animation/src/control-panel.js
@@ -1,6 +1,6 @@
import React, {PureComponent} from 'react';

import CITIES from '../../data/cities.json';
import CITIES from '../../.data/cities.json';

const defaultContainer = ({children}) => <div className="control-panel">{children}</div>;

Expand Down

0 comments on commit 3855092

Please sign in to comment.