1
0
mirror of https://github.com/SomboChea/ui synced 2024-10-01 05:47:50 +07:00
verdaccio-ui/src/webui/components/TextField/index.js

20 lines
362 B
JavaScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
/**
* @prettier
* @flow
*/
import React from 'react';
import { TextFieldProps, default as TextFieldMaterialUI } from '@material-ui/core/TextField';
const TextField = ({ InputProps, classes, ...other }: TextFieldProps) => (
<TextFieldMaterialUI
{...other}
InputProps={{
...InputProps,
classes,
}}
/>
);
export default TextField;