noogle/createEmotionCache.ts
2022-11-26 10:36:08 +01:00

8 lines
170 B
TypeScript

import createCache from "@emotion/cache";
const createEmotionCache = () => {
return createCache({ key: "css", prepend: true });
};
export default createEmotionCache;