import React from 'react'; import * as monthUtils from 'loot-core/src/shared/months'; import { P } from 'loot-design/src/components/common'; import { Standalone, Title } from './common'; import Navigation from './Navigation'; function TransactionEnter({ fromYNAB, navigationProps }) { const currentDay = monthUtils.currentDay(); return ( Add a transaction

Categorize the new transaction (you can use anything, try "Food") and enter any amount in the "payment" column. You'll see how it affects the budget.

Next, try adding an income transaction by categorizing a new transaction as "Income" and entering an amount in the "deposit" column.

); } export default TransactionEnter;