department-of-veterans-affairs/vets-website

View on GitHub
src/applications/edu-benefits/10203/Form10203App.jsx

Summary

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

import RoutedSavableApp from 'platform/forms/save-in-progress/RoutedSavableApp';
import formConfig from './config/form';

export default function Form10203Entry({ location, children }) {
  return (
    <RoutedSavableApp formConfig={formConfig} currentLocation={location}>
      {children}
    </RoutedSavableApp>
  );
}