react-cm-ui
Version:
React UI for Healthy Church
18 lines (14 loc) • 361 B
JSX
import MUIListSubheader from '@material-ui/core/ListSubheader';
import React from 'react';
function ListSubheader(props) {
const {
...otherProps
} = props;
return (
<MUIListSubheader
// eslint-disable-next-line react/jsx-props-no-spreading
{...otherProps}
/>
);
}
export default ListSubheader;