aboutsummaryrefslogtreecommitdiffstats
path: root/configs/appList.js
blob: 3d6ab42f68225ac4079849013f2a3fcadfdd747a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Calculator, Notes, Player, Settings, ChangePassword, Youtube } from 'apps'

const appList = {
  Calculator: { component: Calculator, icon: true, buttons: ['min', 'close'], height: '21em', width: '14em' },
  Notes: { component: Notes, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' },
  Player: { component: Player, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' },
  ChangePassword: { component: ChangePassword, icon: false, buttons: ['min', 'close'], height: '21em', width: '18em' },
  Settings: { component: Settings, icon: false, buttons: ['min', 'close'], height: '23em', width: '16em' },
  Youtube: { component: Youtube, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }
}

export default appList