// @flow import React from 'react'; import { Modal } from 'modal/modal'; import Button from 'component/button'; type Props = { closeModal: () => void, }; const ModalWelcome = (props: Props) => { const { closeModal } = props; return (

{__('Using LBRY is like dating a centaur. Totally normal up top, and')} {__('way different')}{' '} {__('underneath.')}

{__('Up top, LBRY is similar to popular media sites.')}

{__('Below, LBRY is controlled by users -- you -- via blockchain and decentralization.')}

); }; export default ModalWelcome;