mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* Change nav structure when topnav is enable to do initial tests with new information architecture * Support for nested sections * Updated * sentance case * Progress on plugin challange * Rewrite to functional component * Progress * Updates * Progress * Progress on things * missing file * Fixing issue with runtime, need to use setter way to set component exposed via runtime * Move PageLayoutType to grafana/data * Fixing breadcrumb issue, adding more tests * reverted backend change * fix recursive issue with cleanup
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import { createAction } from '@reduxjs/toolkit';
|
|
|
|
import { StoreState } from '../../types';
|
|
|
|
export type CleanUpAction = (state: StoreState) => void;
|
|
|
|
export interface CleanUpPayload {
|
|
cleanupAction: CleanUpAction;
|
|
}
|
|
|
|
export const cleanUpAction = createAction<CleanUpPayload>('core/cleanUpState');
|