1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/app/react/components/DashboardItem/DashboardGrid.tsx
Ali 89194405ee
fix(kube): improve dashboard load speed [EE-4941] (#8572)
* apply changes from EE

* clear query cache when logging out

* Text transitions in smoother
2023-03-08 11:22:08 +13:00

5 lines
187 B
TypeScript

import { PropsWithChildren } from 'react';
export function DashboardGrid({ children }: PropsWithChildren<unknown>) {
return <div className="grid grid-cols-2 gap-3">{children}</div>;
}