2022-10-04 21:13:23 +03:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2023-05-08 12:12:13 +03:00
|
|
|
export const NotSignedInIndicator: React.FC = () => (
|
2022-10-04 21:13:23 +03:00
|
|
|
<div className='scrollable scrollable--flex'>
|
|
|
|
<div className='empty-column-indicator'>
|
2023-05-09 20:02:12 +03:00
|
|
|
<FormattedMessage
|
|
|
|
id='not_signed_in_indicator.not_signed_in'
|
2023-05-10 21:17:55 +03:00
|
|
|
defaultMessage='You need to login to access this resource.'
|
2023-05-09 20:02:12 +03:00
|
|
|
/>
|
2022-10-04 21:13:23 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|