fbredius/storybook

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

Summary

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

interface FooProps {
  bar: Foo['bar'];
}

export const FooComponent = (foo: FooProps) => <>{JSON.stringify(foo)}</>;

export const component = FooComponent;