source: frontend/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js

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
RevLine 
[9af201e]1/**
2 * @flow
3 */
4
5export type JSXExpressionContainerMockType = {
6 type: 'JSXExpressionContainer',
7 expression: mixed,
8}
9
10export 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.