car-crushers-portal/app/createEmotionCache.ts
2023-10-19 16:49:09 -04:00

8 lines
189 B
TypeScript

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