6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
|
|
import createCache from "@emotion/cache";
|
||
|
|
|
||
|
|
export default function createEmotionCache() {
|
||
|
|
return createCache({ key: "css" });
|
||
|
|
}
|