// @flow import * as React from "react"; import { Grid, Card, Container } from "../"; type Props = {| +children?: React.Node, +title?: string, +header?: React.Node, +footer?: React.Node, +RootComponent?: React.ElementType, |}; function PageCard({ children, title, header, footer, RootComponent, }: Props): React.Node { return (