Last active
January 5, 2019 16:44
-
-
Save Eyongkevin/20b8e1f229ba4376a8a0162e15958491 to your computer and use it in GitHub Desktop.
This file contain an array of JavaScript objects, each representing a single article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let articleData={ | |
'logo':'public/images/medium.png', | |
article :[ | |
{ | |
id: 1, | |
author: 'eyong kevin', | |
title: 'Linear Regression: How to overcome underfitting with locally Weight Linear Regression(LWLR)', | |
description: 'Here, we will look at a technique for locally smoothing our estimates to better fit data', | |
url: 'https://itnext.io/linear-regression-how-to-overcome-underfitting-with-locally-weight-linear-regression-lwlr-e867f0cde4a4', | |
clapps: 39, | |
submitterAvatarUrl: 'public/images/avatars/eyong.jpg', | |
productImageUrl: 'public/images/articles/LWLR.jpg', | |
}, | |
{ | |
id: 3, | |
author: 'Egbe Doris Takang', | |
title: 'How to Pray', | |
description: 'How to approach God in prayers', | |
url: 'https://medium.com/@takandoris/how-to-pray-7c3abc4dfa60', | |
clapps: 14, | |
submitterAvatarUrl: 'public/images/avatars/doris.jpeg', | |
productImageUrl: 'public/images/articles/how-to-pray.jpeg', | |
}, | |
{ | |
id: 2, | |
author: 'eyong kevin', | |
title: 'A Template for Creating a Full Stack Web Application with Flask, NPM, Webpack, and Reactjs ', | |
description: 'This article helps you start your own full-stack web application with a Python Flask server and a React front-end', | |
url: 'https://itnext.io/a-template-for-creating-a-full-stack-web-application-with-flask-npm-webpack-and-reactjs-be2294b111bd', | |
clapps: 27, | |
submitterAvatarUrl: 'public/images/avatars/eyong.jpg', | |
productImageUrl: 'public/images/articles/full-stack_template.jpeg', | |
} | |
] | |
} | |
export default articleData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment