mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 20:28:06 +01:00
12 lines
269 B
TypeScript
12 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',
|
||
|
);
|