import * as React from 'react'; import { BlueRain, BlueRainConsumer } from '@blueeast/bluerain-os'; import { style } from './style'; // get the locally stored image const emptyComponent = () => { const title = 'No Apps Installed'; return ( {(BR: BlueRain) => { const emptyImage = BR.Configs.get('plugins.launcher.images.emptyPage'); return BR.Components.ComponentState ? ( ) : null }} ); }; export default emptyComponent;