Socialify

Folder ..

Viewing components.ts
14 lines (11 loc) • 362.0 B

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

import { loginComponent } from "./loginComponent";
import { notificationsComponent, notificationDropdownComponent } from "./notficationComponent";

class ComponentLoader {
  constructor() {
    loginComponent();
    notificationsComponent();
    notificationDropdownComponent();
  }
}

export const Components = new ComponentLoader();