-
Matiss Janis Aboltins authored
*
upgrade eslint-plugin-import and fix issues * Change import orderingMatiss Janis Aboltins authored*
upgrade eslint-plugin-import and fix issues * Change import ordering
ManagePayeesPage.js 487 B
import React from 'react';
import { useLocation } from 'react-router';
import { Page } from '../Page';
import ManagePayeesWithData from './ManagePayeesWithData';
export function ManagePayeesPage() {
let location = useLocation();
return (
<Page title="Payees">
<ManagePayeesWithData
initialSelectedIds={
location.state && location.state.selectedPayee
? [location.state.selectedPayee]
: null
}
/>
</Page>
);
}