import React from 'react'; import { AccentText } from './AccentText'; import { LocalizerType } from '../../types/Util'; import { RegistrationTabs } from './RegistrationTabs'; declare global { interface Window { displayNameRegex: any; } } interface Props { showSubtitle: boolean; i18n: LocalizerType; } export class SessionRegistrationView extends React.Component { constructor(props: Props) { super(props); } public render() { const { showSubtitle, i18n } = this.props; return (
); } }