import React from 'react'
import { Text } from 'react-native'

import { TextStyles } from '../Styles'
import { Strings } from '../i18n'

export const NoResults: React.FC = () => (
  <Text style={{ ...TextStyles.body, textAlign: 'center', margin: 20 }}>
    {Strings.Shared.NoResults}
  </Text>
)
