14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
import ProtectedFilesTable from '@/app/ui/marking-page/protected-files-table';
|
|||
|
|
import ProtectionSummary from '@/app/ui/marking-page/protection-summary';
|
||
|
|
import TestSection from '@/app/ui/marking-page/test-section';
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="page-title">Защита аудио</h1>
|
||
|
|
<ProtectionSummary />
|
||
|
|
<TestSection />
|
||
|
|
<ProtectedFilesTable />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|