Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 9 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import AbstractDropdownDispatcher from './AbstractDropdownDispatcher'; |
||
2 | |||
3 | class PluginDropdownDispatcher extends AbstractDropdownDispatcher { |
||
4 | getMenuItem(schema) { |
||
5 | return super.getMenuItem(schema, { label: 'Plugins' }); |
||
6 | } |
||
7 | } |
||
8 | |||
9 | export default PluginDropdownDispatcher; |
||
10 |