lbry-desktop/src/ui/component/common/unsupported-on-web.jsx

13 lines
386 B
React
Raw Normal View History

2019-03-18 06:06:41 +01:00
import React from 'react';
import Button from 'component/button';
export default function UnsupportedOnWeb() {
return (
<div className="card__content help help--warning">
This page is not currently supported on the web.{' '}
2019-05-07 23:38:29 +02:00
<Button button="link" label={__('Download the desktop app')} href="https://lbry.com/get" /> for full feature
support.
2019-03-18 06:06:41 +01:00
</div>
);
}