src/applications/_mock-form-ae-design-patterns/shared/components/pages/Confirmation.jsx
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;