import { Component } from 'react';
import axios from 'axios'
class App extends Component {
static async getInitialProps() {
let response = await axios.get('http://localhost:3000/api/posts');
return { posts: response.data };
}
render() {
return (
<div className='container'>
<style jsx>{`
.header {
padding: 16px 16px;
}
.content {
padding: 16px 16px;
}
.post {
margin-bottom: 16px;
}
`}</style>
<div className='header'>
<h1>Keystone Next Example</h1>
</div>
<div className='content'>
{ this.props.posts.map((post, i) => {
return (
<div className='post' key={i}>
<div className='row'>
<div className='col-12 col-md-4'>
<img className='img-fluid' src={post.image.secure_url}/>
</div>
<div className='col-12 col-md-8'>
<h2>{post.title}</h2>
<div dangerouslySetInnerHTML={{__html: post.content.brief}}></div>
</div>
</div>
</div>
);
}) }
</div>
</div>
);
};
}
export default App;
Created
April 7, 2018 13:08
-
-
Save victor36max/08749581d353454f4d32637a0cf0f2a5 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment