import React from 'react'; import { P, Button } from 'loot-design/src/components/common'; import { Standalone, Title, useMinimized } from './common'; import Navigation from './Navigation'; function CategoryBalance({ targetRect, navigationProps }) { let [minimized, toggle] = useMinimized(); return ( Tracking categories {!minimized && (

If you categorized any expenses, the budget has updated to show the amount spent in those categories and the new balance.

)} {minimized ? 'Show more' : 'Show less'} } />
); } export default CategoryBalance;