-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathindex.js
55 lines (54 loc) · 1.22 KB
/
index.js
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
44
45
46
47
48
49
50
51
52
53
54
55
import { ironMan } from "./iron-man";
import { thor } from "./thor";
import { hulk } from "./hulk";
import { jordan } from "./jordan";
import { cassidy } from "./cassidy";
import { tracer } from "./tracer";
// import { dva } from "./dva";
import { spring } from "./spring";
import { mountain } from "./mountain";
import { bigWorld } from "./big-world";
import { falling } from "./falling";
import { challenge } from "./challenge";
import { beYourself } from "./be-yourself";
import { iMissYou } from "./i-miss-you";
import { keepGoodMood } from "./keep-good-mood";
import { niceDay } from "./have-a-nice-day";
import { kobe } from "./kobe";
import { eye } from "./eye";
import { beer } from "./beer";
import { weak } from "./weak";
import { tree } from "./tree";
import { life } from "./life";
import { face } from "./face";
import { showOff } from "./show-off";
import { goal } from "./goal";
export const all = {
name: "all",
wallpapers: [
ironMan,
thor,
hulk,
jordan,
life,
showOff,
face,
goal,
kobe,
cassidy,
tracer,
spring,
beYourself,
keepGoodMood,
iMissYou,
niceDay,
eye,
beer,
weak,
tree,
mountain,
bigWorld,
falling,
challenge,
],
};