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