// @flow import type { Node } from 'react'; import * as MODALS from 'constants/modal_types'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import Button from 'component/button'; import Yrbl from 'component/yrbl'; type Props = { includeWalletLink: boolean, type?: string, actions?: Node, doOpenModal: string => void, }; export default function YrblHelp(props: Props) { const { includeWalletLink = false, type = 'sad', doOpenModal } = props; return (

{__('You need LBC to create a channel and upload content.')}

{__( 'Never fear though, there are tons of ways to earn LBC! You can earn or purchase LBC, or you can have your friends send you some.' )}

} /> ); }