summaryrefslogtreecommitdiffhomepage
path: root/app/components/LoggedIn.js
blob: c99f289c484b05708f3544ed50ec78873d507503 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React, { Component } from 'react';

export default class LoggedIn extends Component {
  render() {
    return (
      <div className="loggedin__container">
        <h2>Logged in as {this.props.user.username}</h2>
      </div>
    );
  }
}