mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-03 12:30:10 +00:00
12 lines
391 B
JavaScript
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>
|
|
);
|
|
}
|