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