comissions-app-ui/core/utils/create-emotion-cache.ts
2024-02-18 01:44:48 -05:00

6 lines
123 B
TypeScript

import createCache from '@emotion/cache'
export const createEmotionCache = () => {
return createCache({ key: 'css' })
}