19 lines
673 B
TypeScript
19 lines
673 B
TypeScript
import MyContentInfoBlock from '@/app/ui/my-content/my-content-info-block';
|
|
import FilesTable from '@/app/ui/dashboard/files-table';
|
|
import MyContentPieChart from '@/app/ui/my-content/my-content-pie-chart';
|
|
import MyContentStatsOverview from '@/app/ui/my-content/new/my-content-stats-overview';
|
|
import PageTitleColorFrame from '@/app/ui/page-title-color-frame';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<PageTitleColorFrame title="my-content" description="my-content-description"/>
|
|
<MyContentStatsOverview />
|
|
{/* <div className="split-blocks">
|
|
<MyContentInfoBlock />
|
|
<MyContentPieChart />
|
|
</div> */}
|
|
<FilesTable fileType={'all'} />
|
|
</>
|
|
)
|
|
} |