我正在尝试执行此命令
import Button from '@material-ui/core/Button';
function AccessibleButton(props) {
const { accessKey, ariaLabel, isDisabled, label, onClick, tabIndex, variant, size} = props;
return (
<Button
accesskey={accessKey}
aria-label={ariaLabel}
disabled={isDisabled}
className={componentCls}
onClick={onClick}
tabindex={tabIndex}
variant={variant}
size={size}
>
{label}
</Button>
);
};
,并且出现此错误。我正在尝试在这里安装mongo db。你能告诉我,我在做什么错
/home/trijay/Desktop/mongodb/bin/mongod --dbpath=/home/trijay/Desktop/mongodb-data