Created
July 6, 2020 19:15
-
-
Save maisonm/623b30cadfb629d5b3ade8eba4839ad4 to your computer and use it in GitHub Desktop.
Container component for the example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
//Styles | |
import { UsersPageContainer } from './styles'; | |
//Components | |
import UserTable from '../UserTable/UserTable'; | |
const UsersPage = () => { | |
return ( | |
<UsersPageContainer> | |
<UserTable /> | |
</UsersPageContainer> | |
); | |
}; | |
export default UsersPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment