All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.wm.utils.tsx Maven / Gradle / Ivy

import { WindowManagerConfig, WindowProps } from './types';

export function configToWindowProps(config: WindowManagerConfig): WindowProps[] {
  return config.windows
    .map((window, index) => 
      ({ focus: index == 0, ...window })
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy