aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ProfileInfo/ProfileInfo.tsx12
-rw-r--r--src/index.tsx38
2 files changed, 6 insertions, 44 deletions
diff --git a/src/ProfileInfo/ProfileInfo.tsx b/src/ProfileInfo/ProfileInfo.tsx
index 05a2b78..2bba586 100644
--- a/src/ProfileInfo/ProfileInfo.tsx
+++ b/src/ProfileInfo/ProfileInfo.tsx
@@ -1,8 +1,8 @@
-import React, {useEffect, useState} from 'react';
+import React, { useState } from 'react';
import { Avatar } from '@material-ui/core/';
import { makeStyles } from '@material-ui/core/styles';
-import {Poll, User} from "../types";
-import {get} from "../requests";
+import { User } from '../types';
+import { get } from '../requests';
interface PropTypes {
id: string;
@@ -37,10 +37,8 @@ const useStyles = makeStyles({
const ProfileInfo: React.FC<PropTypes> = ({ id }) => {
const [userInfo, setUserInfo] = useState<User>();
- let endpoint: string = '/users/' + id;
-
- get(endpoint).then(response => {
- setUserInfo(response.data)
+ get(`/users/ + ${id}`).then(response => {
+ setUserInfo(response.data);
});
const classes = useStyles();
diff --git a/src/index.tsx b/src/index.tsx
index 530cd82..9fb34cb 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -21,42 +21,6 @@ const theme = createMuiTheme({
}
});
-const polls = [{
- author: {
- name: 'John Doe',
- avatarUrl: ''
- },
- contents: {
- left: {
- // eslint-disable-next-line max-len
- url: 'https://images.pexels.com/photos/556666/pexels-photo-556666.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500',
- votes: 15
- },
- right: {
- // eslint-disable-next-line max-len
- url: 'https://cdn.psychologytoday.com/sites/default/files/field_blog_entry_images/2019-06/pexels-photo-556667.jpeg',
- votes: 17
- }
- }
-}, {
- author: {
- name: 'John Doe',
- avatarUrl: ''
- },
- contents: {
- left: {
- // eslint-disable-next-line max-len
- url: 'https://images.pexels.com/photos/556666/pexels-photo-556666.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500',
- votes: 15
- },
- right: {
- // eslint-disable-next-line max-len
- url: 'https://cdn.psychologytoday.com/sites/default/files/field_blog_entry_images/2019-06/pexels-photo-556667.jpeg',
- votes: 17
- }
- }
-}];
-
const useStyles = makeStyles({
root: {
width: theme.spacing(75),
@@ -75,7 +39,7 @@ const App: React.FC = () => {
<Header setPage={setPage} />
<div className={classes.root}>
{
- page === 'profile' && <ProfileInfo id='5ee39a3b29600306e4e2b0b7' />
+ page === 'profile' && <ProfileInfo id="5ee39a3b29600306e4e2b0b7" />
}
<Feed page={page} />
</div>