mirror of https://github.com/mastodon/mastodon
Add “In Memoriam” banner back to profiles (#23614)
parent
722c0011d1
commit
86ad43173f
@ -0,0 +1,12 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
const MemorialNote = () => (
|
||||||
|
<div className='account-memorial-banner'>
|
||||||
|
<div className='account-memorial-banner__message'>
|
||||||
|
<FormattedMessage id='account.in_memoriam' defaultMessage='In Memoriam.' />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default MemorialNote;
|
Loading…
Reference in New Issue