mirror of
https://github.com/wassname/talk.git
synced 2026-07-07 11:13:14 +08:00
15 lines
378 B
JavaScript
15 lines
378 B
JavaScript
import React from 'react';
|
|
import cn from 'classnames';
|
|
import {MenuItem} from 'react-mdl';
|
|
import PropTypes from 'prop-types';
|
|
import styles from './ActionsMenu.css';
|
|
|
|
const ActionsMenuItem = (props) =>
|
|
<MenuItem className={cn(styles.menuItem, props.className)} {...props} />;
|
|
|
|
ActionsMenuItem.propTypes = {
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default ActionsMenuItem;
|