~cytrogen/masto-fe

ref: 64ec41d89c28f29ef4fad5353ae887705011c8d3 masto-fe/app/javascript/mastodon/components/not_signed_in_indicator.tsx -rw-r--r-- 415 bytes
64ec41d8 — Renaud Chaput Make Webpack fail on failed imports (#24908) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
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 sign in to access this resource.' />
    </div>
  </div>
);

export default NotSignedInIndicator;