forked from calebnance/expo-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreloadImages.js
More file actions
43 lines (40 loc) · 1.81 KB
/
preloadImages.js
File metadata and controls
43 lines (40 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// local images
// /////////////////////////////////////////////////////////////////////////////
const user = require('../assets/images/user.png');
// albums (mock local)
// /////////////////////////////////////////////////////////////////////////////
const blankFaceLp = require('../assets/images/albums/blank-face-lp.jpg');
const bornToDie = require('../assets/images/albums/born-to-die.jpg');
const comeAroundSundown = require('../assets/images/albums/come-around-sundown.jpg');
const dearMissLonelyhearts = require('../assets/images/albums/dear-miss-lonelyhearts.jpg');
const exRe = require('../assets/images/albums/ex-re.jpg');
const extraMachine = require('../assets/images/albums/extraordinary-machine.jpg');
const housesOfTheHoly = require('../assets/images/albums/houses-of-the-holy.jpg');
const illuminate = require('../assets/images/albums/illuminate.jpg');
const seaOfCowards = require('../assets/images/albums/sea-of-cowards.jpg');
const stadiumArcadium = require('../assets/images/albums/stadium-arcadium.jpg');
const swimming = require('../assets/images/albums/swimming.jpg');
const theCreekDrank = require('../assets/images/albums/the-creek-drank-the-cradle.jpg');
const theLegendOfMrRager = require('../assets/images/albums/the-legend-of-mr-rager.jpg');
const theLonesomeCrowdedWest = require('../assets/images/albums/the-lonesome-crowded-west.jpg');
const whenWeAllFallAsleep = require('../assets/images/albums/when-we-all-fall-asleep.jpg');
const wishYouWereHere = require('../assets/images/albums/wish-you-where-here.jpg');
export default {
user,
blankFaceLp,
bornToDie,
comeAroundSundown,
dearMissLonelyhearts,
exRe,
extraMachine,
housesOfTheHoly,
illuminate,
seaOfCowards,
stadiumArcadium,
swimming,
theCreekDrank,
theLegendOfMrRager,
theLonesomeCrowdedWest,
whenWeAllFallAsleep,
wishYouWereHere
};