Add task and note create option in comand menu (#1115)
* add task and note create option in comand menu * Re-run CIs --------- Co-authored-by: Weiko <corentin@twenty.com> Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
22b4bffcde
commit
4a388b8ed5
@ -0,0 +1,14 @@
|
||||
import { atom } from 'recoil';
|
||||
|
||||
import { Command, CommandType } from '../types/Command';
|
||||
|
||||
export const commandMenuCommand = atom<Command[]>({
|
||||
key: 'command-menu/commandMenuCommand',
|
||||
default: [
|
||||
{
|
||||
to: '',
|
||||
label: '',
|
||||
type: CommandType.Navigate,
|
||||
},
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user