
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
react-desktop-menus
Advanced tools
Desktop app menus with react
http://yannickbochatay.github.io/react-desktop-menus
npm install react-desktop-menus
import React from "react"
import { render } from "react-dom"
import { Menu, MenuItem, Divider } from "react-desktop-menus"
const action = () => console.log("hello")
render(
<Menu keyboard>
<MenuItem action={ action } label="Simple item"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-road"/> } label="Item with icon"/>
<MenuItem action={ action } icon={ <img src="build/icon.svg"/> } label="Item with any kind of icon"/>
<MenuItem disabled label="Item disabled" icon={ <i className="glyphicon glyphicon-headphones"/> }/>
<Divider/>
<MenuItem action={ action } label="Custom hover color" activeColor="pink"/>
<MenuItem action={ action } checkbox> Item as a checkbox </Menu.Item>
<MenuItem action={ action } checkbox defaultChecked> Item as a checkbox checked </Menu.Item>
<MenuItem action={ action } icon={ <i className="fa fa-modx"/> } shortcut="s" label="Item with shortcut"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-print"/> } info="Info" label="Item with info"/>
<MenuItem icon={ <i className="fa fa-bar-chart"/> } label="Submenu">
<Menu>
<MenuItem action={ action } label="Simple item"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-road"/> } label="Item with icon"/>
<MenuItem action={ action } icon={ <img src="build/icon.svg"/> } label="Item with any kind of icon"/>
</Menu>
</MenuItem>
</Menu>
,
document.getElementById("content")
)
import { Menu } from "react-desktop-menus"
ReactDOM.render(<Menu>, document.getElementById("content"))
or (to load only what you need)
import Menu from "react-desktop-menus/lib/Menu"
ReactDOM.render(<Menu>, document.getElementById("content"))
import { Menu, MenuItem } from "react-desktop-menus"
ReactDOM.render(
<Menu>
<MenuItem action={ () => console.log(hello) } label="toto"/>
</Menu>,
document.getElementById("content")
)
or (to load only what you need)
import Menu from "react-desktop-menus/lib/Menu"
import MenuItem from "react-desktop-menus/lib/MenuItem"
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.