lemmy/ui/src/components/create-post.tsx
Dessalines e690d6c470 Adding post editing.
- Adding post editing. Fixes #23
- Making SQL versions of comment and post fetching. Fixes #21
- Starting to add forum categories. #17
2019-04-03 13:59:37 -07:00

30 lines
630 B
TypeScript

import { Component, linkEvent } from 'inferno';
import { PostForm } from './post-form';
export class CreatePost extends Component<any, any> {
constructor(props, context) {
super(props, context);
this.handlePostCreate = this.handlePostCreate.bind(this);
}
render() {
return (
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 mb-4">
<h3>Create a Post</h3>
<PostForm onCreate={this.handlePostCreate}/>
</div>
</div>
</div>
)
}
handlePostCreate(id: number) {
this.props.history.push(`/post/${id}`);
}
}