Skip to content
Snippets Groups Projects
  • Joel Jeremy Marquez's avatar
    e3b4c3f5
    Page enhancements - add page headers to mobile reports (#2733) · e3b4c3f5
    Joel Jeremy Marquez authored
    * Refactor Page component and use in report pages
    
    * Release notes
    
    * Fix typecheck error and budget table background
    
    * Update pages
    
    * VRT updates
    
    * Reports page data-testid
    
    * VRT updates
    
    * Updates
    
    * VRT
    
    * Paddings
    
    * Put create new custom report in page header
    
    * Cleanup
    
    * Feedback
    
    * VRT
    
    * Fix graph sizes in mobile
    
    * Update flex grow
    
    * VRT
    Page enhancements - add page headers to mobile reports (#2733)
    Joel Jeremy Marquez authored
    * Refactor Page component and use in report pages
    
    * Release notes
    
    * Fix typecheck error and budget table background
    
    * Update pages
    
    * VRT updates
    
    * Reports page data-testid
    
    * VRT updates
    
    * Updates
    
    * VRT
    
    * Paddings
    
    * Put create new custom report in page header
    
    * Cleanup
    
    * Feedback
    
    * VRT
    
    * Fix graph sizes in mobile
    
    * Update flex grow
    
    * VRT
ManageRulesPage.tsx 250 B
import React from 'react';

import { ManageRules } from './ManageRules';
import { Page } from './Page';

export function ManageRulesPage() {
  return (
    <Page header="Rules">
      <ManageRules isModal={false} payeeId={null} />
    </Page>
  );
}