(props)
| 16 | |
| 17 | class BlogPosts extends React.Component { |
| 18 | constructor(props) { |
| 19 | super(props); |
| 20 | |
| 21 | this.state = { |
| 22 | // First list of posts. |
| 23 | PostsListOne: [ |
| 24 | { |
| 25 | backgroundImage: require("../images/content-management/1.jpeg"), |
| 26 | category: "Business", |
| 27 | categoryTheme: "dark", |
| 28 | author: "Anna Kunis", |
| 29 | authorAvatar: require("../images/avatars/1.jpg"), |
| 30 | title: "Conduct at an replied removal an amongst", |
| 31 | body: |
| 32 | "However venture pursuit he am mr cordial. Forming musical am hearing studied be luckily. But in for determine what would see...", |
| 33 | date: "28 February 2019" |
| 34 | }, |
| 35 | { |
| 36 | backgroundImage: require("../images/content-management/2.jpeg"), |
| 37 | category: "Travel", |
| 38 | categoryTheme: "info", |
| 39 | author: "James Jamerson", |
| 40 | authorAvatar: require("../images/avatars/2.jpg"), |
| 41 | title: "Off tears are day blind smile alone had ready", |
| 42 | body: |
| 43 | "Is at purse tried jokes china ready decay an. Small its shy way had woody downs power. To denoting admitted speaking learning my...", |
| 44 | date: "29 February 2019" |
| 45 | }, |
| 46 | { |
| 47 | backgroundImage: require("../images/content-management/3.jpeg"), |
| 48 | category: "Technology", |
| 49 | categoryTheme: "royal-blue", |
| 50 | author: "Jimmy Jackson", |
| 51 | authorAvatar: require("../images/avatars/2.jpg"), |
| 52 | title: "Difficult in delivered extensive at direction", |
| 53 | body: |
| 54 | "Is at purse tried jokes china ready decay an. Small its shy way had woody downs power. To denoting admitted speaking learning my...", |
| 55 | date: "29 February 2019" |
| 56 | }, |
| 57 | { |
| 58 | backgroundImage: require("../images/content-management/4.jpeg"), |
| 59 | category: "Business", |
| 60 | categoryTheme: "warning", |
| 61 | author: "John James", |
| 62 | authorAvatar: require("../images/avatars/3.jpg"), |
| 63 | title: "It so numerous if he may outlived disposal", |
| 64 | body: |
| 65 | "How but sons mrs lady when. Her especially are unpleasant out alteration continuing unreserved ready road market resolution...", |
| 66 | date: "29 February 2019" |
| 67 | } |
| 68 | ], |
| 69 | |
| 70 | // Second list of posts. |
| 71 | PostsListTwo: [ |
| 72 | { |
| 73 | backgroundImage: require("../images/content-management/5.jpeg"), |
| 74 | category: "Travel", |
| 75 | categoryTheme: "info", |
nothing calls this directly
no outgoing calls
no test coverage detected