15 lines
423 B
JavaScript
15 lines
423 B
JavaScript
import React, { Component } from "react";
|
|
import CommonLists from "./common_lists"
|
|
class FanUsers extends Component {
|
|
|
|
render() {
|
|
const {user, current_user , match, fetchUser} = this.props
|
|
return (
|
|
<div>
|
|
{user && user.login && <CommonLists userType="fan_users" login={user.login} current_user={current_user} match={match} fetchUser={fetchUser}/>}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
export default FanUsers;
|