React desktop taskbar for electron-wm
npm install @electron-wm/react-taskbarA React-based taskbar component for the electron-wm window manager.
Use the Taskbar component within your desktop component.
``tsx
import { Taskbar, TagList, TaskList, RunField, SystemTray, Clock, LayoutIndicator } from "@electron-wm/react-taskbar";
export default () => {
const screenIndex = useScreenIndex();
return (
{screenIndex === 0 &&
);
};
``