1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 21:39:40 +02:00
portainer/app/react/kubernetes/more-resources/ServiceAccountsView/ServiceAccountsView.tsx
Yajith Dayarathna 6d31f4876a fix(more resources): fix porting and functionality [r8s-103] (#8)
Co-authored-by: testA113 <aliharriss1995@gmail.com>
Co-authored-by: Anthony Lapenna <anthony.lapenna@portainer.io>
Co-authored-by: Ali <83188384+testA113@users.noreply.github.com>
2024-11-12 09:55:30 +13:00

22 lines
560 B
TypeScript

import { useUnauthorizedRedirect } from '@/react/hooks/useUnauthorizedRedirect';
import { PageHeader } from '@@/PageHeader';
import { ServiceAccountsDatatable } from './ServiceAccountsDatatable';
export function ServiceAccountsView() {
useUnauthorizedRedirect(
{ authorizations: ['K8sServiceAccountsW'], adminOnlyCE: true },
{ to: 'kubernetes.dashboard' }
);
return (
<>
<PageHeader
title="Service Account list"
breadcrumbs="Service Accounts"
reload
/>
<ServiceAccountsDatatable />
</>
);
}