Skip to main content

LayoutConfiguration

Home > @backstage/plugin-home > LayoutConfiguration

Layout configuration that can be passed to the custom home page.

Signature:

export type LayoutConfiguration = {
component: ReactElement | string;
x: number;
y: number;
width: number;
height: number;
movable?: boolean;
deletable?: boolean;
resizable?: boolean;
};