mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
51d6aaaf25
- Fixes #100
33 lines
747 B
TypeScript
33 lines
747 B
TypeScript
import { Component } from 'inferno';
|
|
import { CommunityForm } from './community-form';
|
|
|
|
export class CreateCommunity extends Component<any, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
document.title = "Create Forum - Lemmy";
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-6 mb-4">
|
|
<h5>Create Forum</h5>
|
|
<CommunityForm onCreate={this.handleCommunityCreate}/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
handleCommunityCreate(id: number) {
|
|
this.props.history.push(`/community/${id}`);
|
|
}
|
|
}
|
|
|
|
|