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.
session-desktop/ts/components/session/SessionRegistrationView.tsx

31 lines
703 B
TypeScript

import React from 'react';
import { AccentText } from './AccentText';
import { RegistrationTabs } from './RegistrationTabs';
interface Props {
showSubtitle: boolean;
}
export class SessionRegistrationView extends React.Component<Props> {
constructor(props: Props) {
super(props);
}
public render() {
const { showSubtitle } = this.props;
return (
<div className="session-content">
<div id="error" className="collapse" />
<div className="session-content-accent">
<AccentText showSubtitle={showSubtitle} />
</div>
<div className="session-content-registration">
<RegistrationTabs />
</div>
</div>
);
}
}