Socialify

Folder ..

Viewing functions.ts
15 lines (12 loc) • 358.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// Functions Main Runner

import { quickLinksDropdown, profileDropdown, notificationDropdown } from "./dropdowns";
import { statusTracker } from "./statusTracker";

class FunctionLoader {
  constructor() {
    quickLinksDropdown();
    profileDropdown();
    notificationDropdown();
    statusTracker();
  }
}

export const Functions = new FunctionLoader();