Files
novarix.uk/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

18 lines
243 B
JavaScript

/**
* @flow
*/
export type JSXTextMockType = {|
type: 'JSXText',
value: string,
raw: string,
|};
export default function JSXTextMock(value: string): JSXTextMockType {
return {
type: 'JSXText',
value,
raw: value,
};
}