// @flow import type { Node } from 'react'; 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'; import I18nMessage from 'component/i18nMessage'; import LbcSymbol from 'component/common/lbc-symbol'; type Props = { includeWalletLink: boolean, type?: string, actions?: Node, }; export default function YrblHelp(props: Props) { const { includeWalletLink = false, type = 'sad' } = 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.

} actions={
} /> ); }