mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-01 05:45:53 +00:00
303e44abb3
* [WIP] Start port of V3 Modal * allow lambda functions in React Components * lint code * add null case for modalRef * fix action test * reduce onboard slide boilerplate * delete images and componentize OnboardSlide * comment out info onboarding message * fix merge conflict * fix prettier error * revert tslint file * fix type in modal * add translations to onboard modal * add in images, fix stlyes
26 lines
782 B
TypeScript
26 lines
782 B
TypeScript
import React from 'react';
|
|
import translate from 'translations';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import onboardIconEight from 'assets/images/onboarding_icon-08.svg';
|
|
|
|
const SecureSlideTwo = () => {
|
|
const header = (
|
|
<div>
|
|
<span>{translate('ONBOARD_secure_2_title')}</span>
|
|
<p>{translate('ONBOARD_secure_2_content__1')}</p>
|
|
<br />
|
|
</div>
|
|
);
|
|
|
|
const content = (
|
|
<ul>
|
|
<li>{translate('ONBOARD_secure_2_content__2')}</li>
|
|
<li>{translate('ONBOARD_secure_2_content__3')}</li>
|
|
<li>{translate('ONBOARD_secure_2_content__4')}</li>
|
|
<li>{translate('ONBOARD_secure_2_content__5')}</li>
|
|
</ul>
|
|
);
|
|
return <OnboardSlide header={header} content={content} slideImage={onboardIconEight} />;
|
|
};
|
|
export default SecureSlideTwo;
|