You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/ui/src/components/create-community.tsx

30 lines
673 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);
}
render() {
return (
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 mb-4">
<h4>Create Forum</h4>
<CommunityForm onCreate={this.handleCommunityCreate}/>
</div>
</div>
</div>
)
}
handleCommunityCreate(id: number) {
this.props.history.push(`/community/${id}`);
}
}