import { Component } from 'inferno'; import { CommunityForm } from './community-form'; import { Community } from '../interfaces'; import { WebSocketService } from '../services'; import { i18n } from '../i18next'; export class CreateCommunity extends Component { constructor(props: any, context: any) { super(props, context); this.handleCommunityCreate = this.handleCommunityCreate.bind(this); } componentDidMount() { document.title = `${i18n.t('create_community')} - ${ WebSocketService.Instance.site.name }`; } render() { return (
{i18n.t('create_community')}
); } handleCommunityCreate(community: Community) { this.props.history.push(`/c/${community.name}`); } }