Skip to content
Snippets Groups Projects
UserManagement.js 456 B
Newer Older
Orlando Piñero's avatar
sth
Orlando Piñero committed
import React, { Component } from "react";
import UserItem from "./UserItem";
Orlando Piñero's avatar
Orlando Piñero committed

Orlando Piñero's avatar
sth
Orlando Piñero committed

class UserManagement extends Component {
    render() {
        return (
            <div>
                <div id="UserManagementPage" style={{ height: '50vw', backgroundColor: '#2b3648', padding: '10rem', display: 'flex', justifyContent: 'center' }}> 
Orlando Piñero's avatar
sth
Orlando Piñero committed
                    <UserItem />
                </div>
            </div>
        )
    }
}

export default UserManagement