89194405ee
* apply changes from EE * clear query cache when logging out * Text transitions in smoother
6 lines
187 B
TypeScript
6 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>;
|
|
}
|