import {Component } from 'react'; //-------------added this line
import classes from './User.module.css';
class User extends Component{
render(){
return <li className={classes.user}>{this.props.name}</li>;
}
}
//----------commented below and added above//const User = (props) => {
// return <li className={classes.user}>{props.name}</li>;
//};
export default User;
No comments:
Post a Comment