-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
28 lines (27 loc) · 787 Bytes
/
index.js
File metadata and controls
28 lines (27 loc) · 787 Bytes
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
import {} from "./js/loader.js";
import { startSettingsLogic } from "./js/settings.js";
import { startLocalSorageLogic } from "./js/localStorage.js";
import { startAudioLogic } from "./js/audio.js";
import { startTimeLogic } from "./js/time.js";
import { startWeatherLogic } from "./js/weather.js";
import { startSliderLogic } from "./js/slider.js";
import { startQuotesLogic } from "./js/quotes.js";
import { startNameInputLogic } from "./js/greeting.js";
import { startToDosLogic } from "./js/todo.js";
startSettingsLogic();
//slider
startSliderLogic();
//quotes
startQuotesLogic();
// localstorage
startLocalSorageLogic();
// weather
startWeatherLogic();
// audio
startAudioLogic();
// time
startTimeLogic();
// greeting name input
startNameInputLogic();
// todos
startToDosLogic();