fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/10278-ts-multiple-components/input.tsx

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable react/destructuring-assignment */
import React from 'react';

interface IAProps {
  aProperty: any;
}

interface IBProps {
  bProperty: any;
}

/**
 * A component
 */
const A = (props: IAProps): JSX.Element => {
  return <>Hi {props.aProperty}</>;
};

/**
 * B component
 */
const B = (props: IBProps): JSX.Element => {
  return <>Hi {props.bProperty}</>;
};

export { A, B };
export const component = A;