mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-03-03 04:00:37 +00:00
* Replace all language instances of MYCRYPTO LLC * Fix disclaimer LLC * Fix console advert link, adjust logo and make it easier to edit. * Update coinbase URL. * Fix trezor and ledger component links and text. * Misc. cleanup. * Update unlock guide at the end of generate. * Fix onboarding translation string * Change salt hash from mew to mycrpyto.
22 lines
770 B
TypeScript
22 lines
770 B
TypeScript
import React from 'react';
|
|
import translate from 'translations';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import onboardIconSix from 'assets/images/onboarding/slide-06.svg';
|
|
|
|
const WhyMewSlide = () => {
|
|
const header = translate('ONBOARD_whymyc_title');
|
|
|
|
const content = (
|
|
<ul>
|
|
<li>{translate('ONBOARD_whymyc_content__1')}</li>
|
|
<li>{translate('ONBOARD_whymyc_content__2')}</li>
|
|
<li>{translate('ONBOARD_whymyc_content__3')}</li>
|
|
<li>{translate('ONBOARD_whymyc_content__4')}</li>
|
|
<li>{translate('ONBOARD_whymyc_content__5')}</li>
|
|
<li>{translate('ONBOARD_whymyc_content__6')}</li>
|
|
</ul>
|
|
);
|
|
return <OnboardSlide header={header} content={content} image={onboardIconSix} imageSide="left" />;
|
|
};
|
|
export default WhyMewSlide;
|