Я работаю над проектом ASP.NET Core, используя шаблон React с Redux, встроенный в Visual Studio, а также библиотеку Material-UI для интерфейса. Я работаю над созданием AppBar
в данный момент, и когда я пытаюсь запустить свое решение, я получаю сообщение об ошибке:
Недопустимый тип элемента: ожидается строка (для встроенных компонентов)
или класс / функция (для составных компонентов), но получил: object.
Я провел поиск, и были некоторые предположения, что часть компонента не экспортировалась, однако это ни к чему не привело.
Я сузил эту ошибку до определенной части Appbar
, которая:
<InputBase placeholder="Search…" classes={{ root: classes.inputRoot, input: classes.inputInput }} />
Если я уберу вышеуказанную строку кода, все будет работать нормально. Вот полный код моего AppBar at the moment
import React from 'react';
import PropTypes from 'prop-types';
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import IconButton from '@material-ui/core/IconButton';
import Typography from '@material-ui/core/Typography';
import InputBase from '@material-ui/core/InputBase';
import Badge from '@material-ui/core/Badge';
import MenuItem from '@material-ui/core/MenuItem';
import Menu from '@material-ui/core/Menu';
import { fade } from '@material-ui/core/styles/colorManipulator';
import { withStyles } from '@material-ui/core/styles';
import MenuIcon from '@material-ui/icons/Menu';
import SearchIcon from '@material-ui/icons/Search';
import AccountCircle from '@material-ui/icons/AccountCircle';
import MailIcon from '@material-ui/icons/Mail';
import NotificationsIcon from '@material-ui/icons/Notifications';
import MoreIcon from '@material-ui/icons/MoreVert';
const styles = theme => ({
root: {
width: '100%',
},
grow: {
flexGrow: 1,
},
menuButton: {
marginLeft: -12,
marginRight: 20,
},
title: {
display: 'none',
[theme.breakpoints.up('sm')]: {
display: 'block',
},
},
search: {
position: 'relative',
borderRadius: theme.shape.borderRadius,
backgroundColor: fade(theme.palette.common.white, 0.15),
'&:hover': {
backgroundColor: fade(theme.palette.common.white, 0.25),
},
marginRight: theme.spacing.unit * 2,
marginLeft: 0,
width: '100%',
[theme.breakpoints.up('sm')]: {
marginLeft: theme.spacing.unit * 3,
width: 'auto',
},
},
searchIcon: {
width: theme.spacing.unit * 9,
height: '100%',
position: 'absolute',
pointerEvents: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
},
inputRoot: {
color: 'inherit',
width: '100%',
},
inputInput: {
paddingTop: theme.spacing.unit,
paddingRight: theme.spacing.unit,
paddingBottom: theme.spacing.unit,
paddingLeft: theme.spacing.unit * 10,
transition: theme.transitions.create('width'),
width: '100%',
[theme.breakpoints.up('md')]: {
width: 200,
},
},
sectionDesktop: {
display: 'none',
[theme.breakpoints.up('md')]: {
display: 'flex',
},
},
sectionMobile: {
display: 'flex',
[theme.breakpoints.up('md')]: {
display: 'none',
},
},
});
class Appbar extends React.Component {
state = {
anchorEl: null
};
handleProfileMenuOpen = event => {
this.setState({ anchorEl: event.currentTarget });
};
render() {
const { classes } = this.props;
const { anchorEl } = this.state;
const isMenuOpen = Boolean(anchorEl);
return (
<div className={classes.root}>
<AppBar position="static">
<Toolbar>
<IconButton className={classes.menuButton} color="inherit" aria-label="Open drawer">
<MenuIcon />
</IconButton>
<Typography className={classes.title} variant="h6" color="inherit" noWrap>
My Brand
</Typography>
<div className={classes.search}>
<div className={classes.searchIcon}>
<SearchIcon />
</div>
<InputBase placeholder="Search…" classes={{ root: classes.inputRoot, input: classes.inputInput }} />
</div>
<div className={classes.grow} />
<div className={classes.sectionDesktop}>
<IconButton
aria-owns={isMenuOpen ? 'material-appbar' : undefined}
aria-haspopup="true"
onClick={this.handleProfileMenuOpen}
color="inherit">
<AccountCircle />
</IconButton>
</div>
</Toolbar>
</AppBar>
</div>
);
}
}
Appbar.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(Appbar);
Как я упоминал выше, удаление строки InputBase
останавливает ошибку, я могу только предположить, что это возможно связано с разделом classes
листинга?
Может кто-нибудь помочь с этой ошибкой?