import React from 'react';

import { Background, StyledText } from 'components';

const ChooseRecipient = () => {
  return (
    <Background>
      <StyledText variant="h1">ChooseRecipient</StyledText>
    </Background>
  );
};

export default ChooseRecipient;