Skip to content

Instantly share code, notes, and snippets.

@maisonm
Created July 6, 2020 19:15
Show Gist options
  • Save maisonm/623b30cadfb629d5b3ade8eba4839ad4 to your computer and use it in GitHub Desktop.
Save maisonm/623b30cadfb629d5b3ade8eba4839ad4 to your computer and use it in GitHub Desktop.
Container component for the example
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