6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
import createCache from '@emotion/cache';
|
|
|
|
export const createEmotionCache = () => {
|
|
return createCache({ key: 'css' });
|
|
};
|