8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import createCache from "@emotion/cache";
|
|
|
|
export const defaultCache = createEmotionCache();
|
|
|
|
export default function createEmotionCache() {
|
|
return createCache.default({ key: "cha" });
|
|
}
|