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