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:
Sunil Kumar Behera
2023-08-10 02:39:32 +05:30
committed by GitHub
parent 22b4bffcde
commit 4a388b8ed5
8 changed files with 223 additions and 39 deletions

View File

@ -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,
},
],
});