import React from 'react'; import {StyleSheet, Text, View} from 'react-native'; import { useTheme } from '../theme'; const styles = StyleSheet.create({ container: { alignItems: 'center', justifyContent: 'center', backgroundColor: '#EAEAEA', flex: 1, }, }); function NoSelectionEmptyState() { const { colors } = useTheme(); return ( No component selected ); } export default NoSelectionEmptyState;