fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/9832-ts-enum-export/input.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

export enum EnumWithExtraProps {
  key1 = 'key1',
  key2 = 'key2',
}

export const component = () => <div>hello</div>;