forked from Gitlink/forgeplus-react
14 lines
396 B
JavaScript
14 lines
396 B
JavaScript
import React, { Component } from "react";
|
|
import CommonLists from "./common_lists"
|
|
class WatcherUsers extends Component {
|
|
render() {
|
|
const {user, current_user} = this.props
|
|
return (
|
|
<div className="minH-650">
|
|
{user && user.login && <CommonLists userType="watchers" login={user.login} current_user={current_user} />}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
export default WatcherUsers;
|