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

20 lines
410 B
React
Raw Normal View History

2021-04-08 17:39:33 +02:00
// @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>
);
}