import * as React from 'react';
import { PaymentSection, PaymentForm } from '@nova-hf/ui';
import Wrapper from 'components/app-layout/Wrapper';

interface INotificationsProps {
  color?: string;
}

export default class Notifications extends React.Component<INotificationsProps> {
  render() {
    return (
      <Wrapper>
        <PaymentSection smallerTitle fullWidth title="Tilkynningar">
          <PaymentForm>
            <div>
              Tilkynningar
            </div>
          </PaymentForm>
        </PaymentSection>
      </Wrapper>
    );
  }
}
