import { Styles } from '@0x/react-shared'; import * as React from 'react'; export interface FullscreenMessageProps { headerText: string; bodyText: string; } const styles: Styles = { thin: { fontWeight: 100, }, }; export const FullscreenMessage = (props: FullscreenMessageProps) => { return (

{props.headerText}

{props.bodyText}
); };