MyCrypto/common/components/ui/ConditionalInput.tsx
HenryNguyen5 da93fb1684 Prettier Reformat (#619)
* Add repo wide prettier command to prepush

* Make config file explict, remove formatAll to prepush
2017-12-18 17:29:26 -06:00

6 lines
223 B
TypeScript

import React from 'react';
import { withConditional } from 'components/hocs';
const Input: React.SFC<React.InputHTMLAttributes<any>> = props => <input {...props} />;
export const ConditionalInput = withConditional(Input);