mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 21:56:55 +03:00
8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
|
import * as React from 'react';
|
||
|
import { createDevTools } from '@redux-devtools/core';
|
||
|
import { RtkQueryMonitor } from '../src';
|
||
|
|
||
|
const MonitorAsAny = RtkQueryMonitor as any;
|
||
|
|
||
|
export const ReduxDevTools = createDevTools(<MonitorAsAny />);
|