import { GREY_COLOR } from './globalStyles';
import { styles } from './styles';

const Component = () => {
  return (
    <View style={styles.content}>
      <Text style={{ color: GREY_COLOR }}>Hello World!</Text>
    </View>
  );
};