lbry-desktop/ui/page/invited/view.jsx

19 lines
397 B
React
Raw Normal View History

2020-01-14 21:44:07 +01:00
// @flow
import React from 'react';
import Page from 'component/page';
import Invited from 'component/invited';
type Props = {
fullUri: string,
referrer: string,
};
export default function ReferredPage(props: Props) {
const { fullUri, referrer } = props;
return (
<Page authPage className="main--auth-page">
<Invited fullUri={fullUri} referrer={referrer} />
</Page>
);
}