mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 17:24:14 +08:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
import React from 'react';
|
|
import {Textfield as TextFieldMDL} from 'react-mdl';
|
|
|
|
const TextField = ({onChange, label, rows}) => (
|
|
<TextFieldMDL
|
|
onChange={onChange}
|
|
label={label}
|
|
rows={rows}/>
|
|
);
|
|
|
|
export default TextField;
|