mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-11 15:05:02 +00:00
29 lines
674 B
TypeScript
29 lines
674 B
TypeScript
import { Component, linkEvent } from 'inferno';
|
|
import { CommunityForm } from './community-form';
|
|
|
|
export class CreateCommunity extends Component<any, any> {
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.handleCommunityCreate = this.handleCommunityCreate.bind(this);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-6 mb-4">
|
|
<h3>Create Forum</h3>
|
|
<CommunityForm onCreate={this.handleCommunityCreate}/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
handleCommunityCreate(id: number) {
|
|
this.props.history.push(`/community/${id}`);
|
|
}
|
|
}
|
|
|
|
|