mirror of https://github.com/portainer/portainer
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>;
|
||
|
}
|