lbry-desktop/ui/page/reportContent/view.jsx
2021-04-21 10:49:31 -04:00

20 lines
410 B
JavaScript

// @flow
import React from 'react';
import Page from 'component/page';
import ReportContent from 'component/reportContent';
export default function ReportContentPage(props: any) {
return (
<Page
noSideNavigation
className="main--report-content"
backout={{
backoutLabel: __('Done'),
title: __('Report content'),
}}
>
<ReportContent />
</Page>
);
}