1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 22:39:41 +02:00

refactor(containers): migrate create view to react [EE-2307] (#9175)

This commit is contained in:
Chaim Lev-Ari 2023-10-19 13:45:50 +02:00 committed by GitHub
parent bc0050a7b4
commit d970f0e2bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
71 changed files with 2612 additions and 1399 deletions

View file

@ -0,0 +1,17 @@
import clsx from 'clsx';
import { PropsWithChildren } from 'react';
export function NavContainer({ children }: PropsWithChildren<unknown>) {
return (
<div
className={clsx(
'rounded-lg border border-solid p-2',
'border-gray-5 bg-gray-2',
'th-dark:border-gray-neutral-8 th-dark:bg-gray-iron-10',
'th-highcontrast:border-white th-highcontrast:bg-black'
)}
>
{children}
</div>
);
}