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