mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 18:11:05 +08:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
import React from 'react';
|
|
import {SelectField} from 'react-mdl-selectfield';
|
|
import styles from './Select.css';
|
|
|
|
const Select = props => {
|
|
const {children, ...attrs} = props;
|
|
return (
|
|
<SelectField className={styles.Select} {...attrs}>
|
|
{children}
|
|
</SelectField>
|
|
);
|
|
};
|
|
|
|
export default Select;
|