Pulled and merged the latest code from master

This commit is contained in:
Aaron Sun
2019-10-29 14:02:56 -04:00
22 changed files with 441 additions and 119 deletions

View File

@@ -35,8 +35,7 @@ class Writing_Microblogs extends Component {
handleSubmit(event) {
const postData = {
body: this.state.value,
body: this.state.value,
userImage: "bing-url",
microBlogTitle: this.state.title,
microBlogTopics: this.state.topics.split(', ')
@@ -46,7 +45,7 @@ class Writing_Microblogs extends Component {
}
axios
.post('/putPost', postData, headers)
.post("/putPost", postData, headers)
.then((res) =>{
alert('Post was shared successfully!')
console.log(res.data);