This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/node_modules/styled-jsx/css.js
2025-01-11 09:54:09 +03:00

24 lines
469 B
JavaScript

function notTranspiledError(name) {
throw new Error(
'styled-jsx/css: if you are getting this error it means that your `' +
name +
'` tagged template literals were not transpiled.'
)
}
function css() {
notTranspiledError('css')
}
css.global = function() {
notTranspiledError('global')
}
css.resolve = function() {
notTranspiledError('resolve')
}
module.exports = css
module.exports.global = css.global
module.exports.resolve = css.resolve