diff --git a/src/components/Viewers.js b/src/components/Viewers.js index b1b6a7e..72b4b26 100644 --- a/src/components/Viewers.js +++ b/src/components/Viewers.js @@ -9,14 +9,19 @@ import Loader from "react-loader"; const ViewerTab = props => {}; const ViewerCard = props => { - return
{props.login}
; + return ( +
+ + {props.login} + +
+ ); }; -const Viewers = ({chatterInfo, chatterCount} )=> { - +const Viewers = ({ chatterInfo, chatterCount }) => { const [tab, setTab] = useState("twitch"); const { setShowViewers } = useContext(AppContext); - + const currentUser = firebase.auth.currentUser; return (
@@ -51,7 +56,7 @@ const Viewers = ({chatterInfo, chatterCount} )=> {

{key}

{value.map(user => ( - + ))}
);