department-of-veterans-affairs/vets-website

View on GitHub
src/applications/verify-your-enrollment/containers/App.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';
import EnrollmentVerificationPageWrapper from './EnrollmentVerificationPageWrapper';

import BenefitsProfileWrapper from './BenefitsProfilePageWrapper';

export default function App({ children }) {
  return (
    <>
      <EnrollmentVerificationPageWrapper>
        {children}
      </EnrollmentVerificationPageWrapper>
      <BenefitsProfileWrapper>{children}</BenefitsProfileWrapper>
    </>
  );
}

App.propTypes = {
  children: PropTypes.any,
};