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