diff options
author | 2023-04-10 21:57:33 +0200 | |
---|---|---|
committer | 2023-04-10 21:57:33 +0200 | |
commit | f8463676a40656893c2048655e8807099e3adb39 (patch) | |
tree | 9b38927a293e38ec38da2707434786d92327edd0 /configs/appList.js | |
parent | f4e00553c4acf44de48af958afc8747128b55562 (diff) | |
download | my_apps-f8463676a40656893c2048655e8807099e3adb39.tar.gz my_apps-f8463676a40656893c2048655e8807099e3adb39.tar.bz2 my_apps-f8463676a40656893c2048655e8807099e3adb39.zip |
add radio app
Diffstat (limited to 'configs/appList.js')
-rw-r--r-- | configs/appList.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configs/appList.js b/configs/appList.js index 3d6ab42..d9152a4 100644 --- a/configs/appList.js +++ b/configs/appList.js @@ -1,12 +1,13 @@ -import { Calculator, Notes, Player, Settings, ChangePassword, Youtube } from 'apps' +import { Calculator, Notes, Player, Settings, ChangePassword, Radio, 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' }, + Radio: { component: Radio, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, + Youtube: { component: Youtube, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, 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 |