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