mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
14 lines
223 B
JavaScript
14 lines
223 B
JavaScript
import * as Icons from 'components/Icons'
|
|
|
|
export default [
|
|
{
|
|
key: "inspect_element",
|
|
title: "Inspect",
|
|
icon: <Icons.Command />,
|
|
params: {
|
|
onClick: (e) => {
|
|
window.inspectElement(e)
|
|
}
|
|
}
|
|
}
|
|
] |