From 70f8e14c9d4c5b95dc3f8d22a1162248656c500a Mon Sep 17 00:00:00 2001 From: cv <34649812+cpvalente@users.noreply.github.com> Date: Wed, 5 May 2021 19:33:35 +0200 Subject: [PATCH] quickfix add missing module menu action buttons is a planned module. not yet implemented --- .../editors/list/MenuActionButtons.jsx | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 client/src/features/editors/list/MenuActionButtons.jsx diff --git a/client/src/features/editors/list/MenuActionButtons.jsx b/client/src/features/editors/list/MenuActionButtons.jsx new file mode 100644 index 000000000..ad7505a60 --- /dev/null +++ b/client/src/features/editors/list/MenuActionButtons.jsx @@ -0,0 +1,33 @@ +import { Menu, MenuButton, MenuItem, MenuList } from '@chakra-ui/menu'; +import { IconButton } from '@chakra-ui/button'; +import { + FiZap, + FiTrash2, +} from 'react-icons/fi'; + +export default function MenuActionButtons(props) { + const menuStyle = { + color: '#000000', + backgroundColor: 'rgba(255,255,255,1)', + }; + + return ( +
+ ); +}