mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 09:40:42 +08:00
15 lines
314 B
JavaScript
15 lines
314 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;
|