import React from 'react'; interface Props { i18n: any; } export class SessionSettings extends React.Component { constructor(props: any) { super(props); } public render() { const i18n = this.props.i18n; return
; } }