Profile.jsx 366 B

1234567891011121314151617
  1. import React from "react";
  2. import { LeftBar, Player } from "../../components";
  3. import { Content, Main, Wrapper } from "./styles";
  4. const Profile = () => {
  5. return (
  6. <Wrapper>
  7. <Main>
  8. <LeftBar />
  9. <Content></Content>
  10. </Main>
  11. <Player />
  12. </Wrapper>
  13. );
  14. };
  15. export default Profile;