actual/packages/desktop-client/src/components/tutorial/TransactionFinalize.js

30 lines
955 B
JavaScript
Raw Normal View History

2022-04-29 02:44:38 +00:00
import React from 'react';
import { P } from 'loot-design/src/components/common';
import { css } from 'glamor';
import Navigation from './Navigation';
import * as monthUtils from 'loot-core/src/shared/months';
import {Standalone} from './common';
function TransactionFinalize({ navigationProps }) {
return (
<Standalone width={400}>
<P style={{ fontSize: 16 }}>All done!</P>
<P isLast={true}>
You can edit transactions by clicking anywhere on the table, or move
around with the keyboard. A few keybindings:
<ul {...css({ padding: '0 15px', '& li': { marginTop: 5 } })}>
<li>
Tab and enter are the same and will move right (holding shift will
move left).
</li>
<li>Alt or command with arrow keys will move in any direction.</li>
</ul>
</P>
<Navigation {...navigationProps} />
</Standalone>
);
}
export default TransactionFinalize;