link-stack/apps/leafcutter/lib/createEmotionCache.ts

6 lines
130 B
TypeScript
Raw Normal View History

2023-02-13 13:46:56 +00:00
import createCache from "@emotion/cache";
export default function createEmotionCache() {
return createCache({ key: "css" });
}