// Copyright (C) 2017-2025 Smart code 203358507 import React from 'react'; import { useTranslation } from 'react-i18next'; import Icon from '@stremio/stremio-icons/react'; import { Button, Image } from 'stremio/components'; import styles from './Placeholder.less'; const Placeholder = () => { const { t } = useTranslation(); return (
{t('LIBRARY_NOT_LOGGED_IN')}
{'
{t('NOT_LOGGED_IN_CLOUD')}
{t('NOT_LOGGED_IN_RECOMMENDATIONS')}
); }; export default Placeholder;