blob: a114a705f56b1243f50ce640d9a86ce2477a32d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import {Notes, Settings} from 'apps'
const appList = {
Notes: {component: Notes, icon: true, buttons: ['min', 'max', 'close'], height: '64em', width: '64em'},
Settings: {component: Settings, icon: false, buttons: ['min'], height: '23em', width: '20em'},
};
export default appList
|