7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import { EmotionCache } from '@emotion/react';
|
|
import createCache from '@emotion/cache';
|
|
|
|
const createEmotionCache = (): EmotionCache => createCache({ key: 'css' });
|
|
|
|
export default createEmotionCache;
|