mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 12:48:07 +01:00
919ed0e469
Port 4b7bc1f07c
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
export const openDropdownMenu = createAction<{
|
|
id: string;
|
|
keyboard: boolean;
|
|
scrollKey: string;
|
|
}>('dropdownMenu/open');
|
|
|
|
export const closeDropdownMenu = createAction<{ id: string }>(
|
|
'dropdownMenu/close',
|
|
);
|