14 lines
354 B
JavaScript
14 lines
354 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import Nag from 'component/common/nag';
|
|
|
|
export default function NagNoUser() {
|
|
return (
|
|
<Nag
|
|
type="error"
|
|
message={__('Could not get a user ID. Account functions will be unavailable. Try again in a bit.')}
|
|
actionText={__('Refresh')}
|
|
onClick={() => window.location.reload()}
|
|
/>
|
|
);
|
|
}
|