create project
This commit is contained in:
17
kitabcitab/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js
generated
vendored
Normal file
17
kitabcitab/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
export type JSXTextMockType = {|
|
||||
type: 'JSXText',
|
||||
value: string,
|
||||
raw: string,
|
||||
|};
|
||||
|
||||
export default function JSXTextMock(value: string): JSXTextMockType {
|
||||
return {
|
||||
type: 'JSXText',
|
||||
value,
|
||||
raw: value,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user