|
Last change
on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
243 bytes
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * @flow
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | export type JSXTextMockType = {|
|
|---|
| 6 | type: 'JSXText',
|
|---|
| 7 | value: string,
|
|---|
| 8 | raw: string,
|
|---|
| 9 | |};
|
|---|
| 10 |
|
|---|
| 11 | export default function JSXTextMock(value: string): JSXTextMockType {
|
|---|
| 12 | return {
|
|---|
| 13 | type: 'JSXText',
|
|---|
| 14 | value,
|
|---|
| 15 | raw: value,
|
|---|
| 16 | };
|
|---|
| 17 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.