mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-21 01:33:17 +00:00
12 lines
370 B
TypeScript
12 lines
370 B
TypeScript
import { FormattedMessage } from 'react-intl';
|
|
|
|
export const NotSignedInIndicator: React.FC = () => (
|
|
<div className='scrollable scrollable--flex'>
|
|
<div className='empty-column-indicator'>
|
|
<FormattedMessage
|
|
id='not_signed_in_indicator.not_signed_in'
|
|
defaultMessage='You need to login to access this resource.'
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|