Files
old-slucajna-televizija/web/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXElementMock.js
2017-10-16 11:19:46 +02:00

15 lines
290 B
JavaScript

export default function JSXElementMock(tagName, attributes, children = []) {
return {
type: 'JSXElement',
openingElement: {
type: 'JSXOpeningElement',
name: {
type: 'JSXIdentifier',
name: tagName,
},
attributes,
},
children,
};
}