mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import PrivacyAgreement from 'component/privacyAgreement';
|
|
import Page from 'component/page';
|
|
|
|
export default function Welcome() {
|
|
return (
|
|
<Page noHeader noSideNavigation>
|
|
<PrivacyAgreement />
|
|
</Page>
|
|
);
|
|
}
|