mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
da93fb1684
* Add repo wide prettier command to prepush * Make config file explict, remove formatAll to prepush
6 lines
223 B
TypeScript
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);
|