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

const appList = {
  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' },
  Settings: { component: Settings, icon: false, buttons: ['min'], height: '23em', width: '16em' },
  Youtube: { component: Youtube, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }
}

export default appList