mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
|
import { PropsWithChildren } from 'react';
|
||
|
|
||
|
import './DashboardGrid.css';
|
||
|
|
||
|
export function DashboardGrid({ children }: PropsWithChildren<unknown>) {
|
||
|
return <div className="dashboard-grid">{children}</div>;
|
||
|
}
|