department-of-veterans-affairs/vets-website

View on GitHub
src/applications/_mock-form-ae-design-patterns/shared/components/pages/Confirmation.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

// we need to create a confirmation page for the form regardless of whether it is used or not
const Confirmation = () => {
  return <div>Confirmation Page</div>;
};

export default Confirmation;