mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-16 03:20:49 +03:00
* Add Emotion to RTK Query monitor * Add other Emotion setup * Start transition * Convert more styling to Emotion * Convert more styling to Emotion * Finish convert styling to Emotion * import type * Fix test * Remove unused styling * Remove more unused styling * Remove more unused styling * Remove jss * Cleanup * Create perfect-otters-help.md * Update perfect-otters-help.md
32 lines
666 B
TypeScript
32 lines
666 B
TypeScript
import React from 'react';
|
|
|
|
export function NoRtkQueryApi(): JSX.Element {
|
|
return (
|
|
<div
|
|
css={(theme) => ({
|
|
width: '100%',
|
|
textAlign: 'center',
|
|
color: theme.TEXT_COLOR,
|
|
padding: '1.4em',
|
|
'& a': {
|
|
fontSize: 'inherit',
|
|
color: theme.TEXT_COLOR,
|
|
textDecoration: 'underline',
|
|
},
|
|
})}
|
|
>
|
|
No rtk-query api found.
|
|
<br />
|
|
Make sure to follow{' '}
|
|
<a
|
|
href="https://redux-toolkit.js.org/rtk-query/overview#basic-usage"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
the instructions
|
|
</a>
|
|
.
|
|
</div>
|
|
);
|
|
}
|