lbry-desktop/src/renderer/modal/modalFirstReward/view.jsx

45 lines
1.2 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// I"ll come back to This
/* esline-disable */
import React from 'react';
import { Modal } from 'modal/modal';
2018-03-26 23:32:43 +02:00
import CreditAmount from 'component/common/credit-amount';
2017-07-25 00:59:26 +02:00
class ModalFirstReward extends React.PureComponent {
render() {
2018-05-30 18:07:56 +02:00
const { closeModal } = this.props;
2017-07-25 00:59:26 +02:00
return (
<Modal
type="alert"
overlayClassName="modal-overlay modal-overlay--clear"
isOpen
contentLabel={__('Welcome to LBRY')}
2017-07-25 00:59:26 +02:00
onConfirmed={closeModal}
>
<section>
<h3 className="modal__header">{__('Your First Reward')}</h3>
2018-05-30 19:21:56 +02:00
<p>{__('You just earned your first reward!')}</p>
2017-07-25 00:59:26 +02:00
<p>
{__(
2017-07-28 03:13:12 +02:00
"This reward will show in your Wallet in the top right momentarily (if it hasn't already)."
2017-07-25 00:59:26 +02:00
)}
</p>
<p>
{__(
'These credits are used to compensate creators, to publish your own content, and to have say in how the network works.'
2017-07-25 00:59:26 +02:00
)}
</p>
<p>
{__(
'No need to understand it all just yet! Try watching or publishing something next.'
2017-07-25 00:59:26 +02:00
)}
</p>
</section>
</Modal>
);
}
}
export default ModalFirstReward;
2018-03-26 23:32:43 +02:00
/* eslint-enable */