JSXSpreadAttributeMock.js 227 B

123456789101112
  1. /**
  2. * @flow
  3. */
  4. import IdentifierMock from './IdentifierMock';
  5. export default function JSXSpreadAttributeMock(identifier: string) {
  6. return {
  7. type: 'JSXSpreadAttribute',
  8. argument: IdentifierMock(identifier),
  9. };
  10. }