about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/not_signed_in_indicator.jsx
blob: b440c6be2f70453661ff6fa97df41b9aa25a3ce5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
import { FormattedMessage } from 'react-intl';

const NotSignedInIndicator = () => (
  <div className='scrollable scrollable--flex'>
    <div className='empty-column-indicator'>
      <FormattedMessage id='not_signed_in_indicator.not_signed_in' defaultMessage='You need to sign in to access this resource.' />
    </div>
  </div>
);

export default NotSignedInIndicator;