paradiego
This commit is contained in:
27
node_modules/@emotion/react/src/jsx-dev-runtime.js
generated
vendored
Normal file
27
node_modules/@emotion/react/src/jsx-dev-runtime.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import * as ReactJSXRuntimeDev from 'react/jsx-dev-runtime'
|
||||
import Emotion, { createEmotionProps } from './emotion-element'
|
||||
import { hasOwn } from './utils'
|
||||
|
||||
export const Fragment = ReactJSXRuntimeDev.Fragment
|
||||
|
||||
export function jsxDEV(type, props, key, isStaticChildren, source, self) {
|
||||
if (!hasOwn.call(props, 'css')) {
|
||||
return ReactJSXRuntimeDev.jsxDEV(
|
||||
type,
|
||||
props,
|
||||
key,
|
||||
isStaticChildren,
|
||||
source,
|
||||
self
|
||||
)
|
||||
}
|
||||
|
||||
return ReactJSXRuntimeDev.jsxDEV(
|
||||
Emotion,
|
||||
createEmotionProps(type, props),
|
||||
key,
|
||||
isStaticChildren,
|
||||
source,
|
||||
self
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user