📄 JSXTextMock.js
/home/palash/git/site/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js
Language: js • Lines: 17
/**
 * @flow
 */

export type JSXTextMockType = {|
  type: 'JSXText',
  value: string,
  raw: string,
|};

export default function JSXTextMock(value: string): JSXTextMockType {
  return {
    type: 'JSXText',
    value,
    raw: value,
  };
}