fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/9591-ts-import-types/input.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { BarProps } from './Bar';

type OtherProps = BarProps & {
  other?: number;
};

const Other = (props: OtherProps) => <span {...props}>Other</span>;

export const component = Other;