Commit 6ba27acb authored by NaduniRanasinghe's avatar NaduniRanasinghe

Initialized post UIs

parent 570f7589
import React, { Component } from 'react'
class CreatePost extends Component {
constructor(pros){
super(pros)
this.state = {
}
}
render(){
return(
<div className="container">
<h2>New Post Page</h2>
</div>
)
}
}
export default CreatePost;
import React, { Component } from 'react'
class EditPost extends Component {
constructor(pros){
super(pros)
this.state = {
}
}
render(){
return(
<div className="container">
<h2>Edit Post Page</h2>
</div>
)
}
}
export default EditPost;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment