mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
import { createAction } from 'common/redux';
|
|
|
|
export const toggleKitchenSink = createAction('debug/toggleKitchenSink');
|
|
export const toggleDebugLayout = createAction('debug/toggleDebugLayout');
|
|
export const openExternalBrowser = createAction('debug/openExternalBrowser');
|