import React from 'react'; import { Tooltip, Pointer, P } from 'loot-design/src/components/common'; import { colors } from 'loot-design/src/style'; import { Title } from './common'; import Navigation from './Navigation'; function BudgetSummary({ fromYNAB, targetRect, navigationProps }) { return ( Budget Overview

Actual uses a system where{' '} you can only budget money that you currently have.

This is a summary of what money you have to budget and how Actual calculated it. It's your current income (including anything leftover from last month) minus any overspending from last month and any already budgeted amount.

{fromYNAB && (

Since you're coming from YNAB 4, an important distinction is that money is always immediately available.

)}
); } export default BudgetSummary;