import { Component, CSSProperties, ReactNode } from 'react'; interface CenteredPageProps { width?: number; children?: ReactNode; style?: CSSProperties; } export function CenteredPage (props: CenteredPageProps) { return
{props.children}
; } export class PageTitle extends Component { render () { return

{this.props.children}

; } }