fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/9827-ts-default-values/input.tsx

Summary

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

export interface HelloProps {
  title: string;
  foo: boolean;
  bar?: string[];
}

const Hello = ({ title }: HelloProps) => {
  return <div className="hello">Hello Component {title}</div>;
};

Hello.defaultProps = {
  title: 'this is the default :)',
};

export const component = Hello;