import * as React from "react"; import { t } from "./i18next_wrapper"; // No reusability here. Why not just keep it from taking up sass? const STYLES: React.CSSProperties = { "textAlign": "center", "marginTop": "5rem" }; export class FourOhFour extends React.Component<{}, {}> { render() { return

{t("Page Not Found.")}

; } }