mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-29 23:02:22 +03:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
import createCache from "@emotion/cache";
|
||
|
|
||
|
const createEmotionCache = () => {
|
||
|
return createCache({ key: "css", prepend: true });
|
||
|
};
|
||
|
|
||
|
export default createEmotionCache;
|