import React, { memo } from "react"; import { Box, Text } from "native-base"; import { Title } from "./"; interface ActionHeaderProps { textColor: any; /** text to complete the 'To complete this action, ...' sentence */ actionText: string; } const ActionHeader = memo(({ textColor, actionText }: ActionHeaderProps) => ( Action Required To complete this action, {actionText}. )); export default ActionHeader;