We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534a407 commit 3f25994Copy full SHA for 3f25994
App.js
@@ -24,7 +24,7 @@ class App extends Component {
24
window.scrollTo(0, 0)
25
let _this = this
26
this.setState({ isLoading: true })
27
- axios.get(`${baseURL}/ajax/posts/hot`)
+ axios.get(`${baseURL}/ajax/posts/hot/min`)
28
.then(function (result) {
29
_this.setState({
30
posts: result.data.posts,
@@ -59,7 +59,7 @@ class App extends Component {
59
return <li className='post' key={index}>
60
<PostCard post={post} />
61
</li>
62
- }).reverse()
+ })
63
64
return (
65
<div id='app'>
0 commit comments