lbry-desktop/src/ui/component/common/unsupported-on-web.jsx
2019-03-18 11:01:59 -04:00

12 lines
391 B
JavaScript

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.{' '}
<Button button="link" label={__('Download the desktop app')} href="https://lbry.com/get" />{' '}
for full feature support.
</div>
);
}