-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStoryCard.js
38 lines (30 loc) · 1013 Bytes
/
StoryCard.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import React, { useEffect, useState } from 'react';
import Fade from 'react-reveal/Fade';
const StoryCard = ({ id }) => {
const [details, setDetails] = useState({})
const getStoryData = async (id) => {
const response = await fetch(`https://hacker-news.firebaseio.com/v0/item/${id}.json?print=pretty`, {
headers: {
'Content-type': 'application/json',
},
})
const storyDetails = await response.json();
console.log(storyDetails);
setDetails(storyDetails)
}
useEffect(() => {
getStoryData(id);
}, [id])
return (
<Fade bottom>
<div key={details.id}
className="bg-white rounded shadow border-l-4 text-gray-700 p-3 px-4 text-xl m-1 text-left"
>
<a href={details.url} target="_blank" rel="noreferrer">
<h2>{details.title}</h2>
</a>
</div>
</Fade>
);
}
export default StoryCard;