import React from 'react';

import { Background, StyledText } from 'components';

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

export default ChangePin;