create project
This commit is contained in:
15
kitabcitab/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js
generated
vendored
Normal file
15
kitabcitab/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
export type JSXExpressionContainerMockType = {
|
||||
type: 'JSXExpressionContainer',
|
||||
expression: mixed,
|
||||
}
|
||||
|
||||
export default function JSXExpressionContainerMock(exp: mixed): JSXExpressionContainerMockType {
|
||||
return {
|
||||
type: 'JSXExpressionContainer',
|
||||
expression: exp,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user