JSXTextMock.js 243 B

1234567891011121314151617
  1. /**
  2. * @flow
  3. */
  4. export type JSXTextMockType = {|
  5. type: 'JSXText',
  6. value: string,
  7. raw: string,
  8. |};
  9. export default function JSXTextMock(value: string): JSXTextMockType {
  10. return {
  11. type: 'JSXText',
  12. value,
  13. raw: value,
  14. };
  15. }