actual/packages/desktop-client/src/components/tutorial/TransactionFinalize.js
Tom French 9c0df36e16
Sort import in alphabetical order (#238)
* style: enforce sorting of imports

* style: alphabetize imports

* style: merge duplicated imports
2022-09-02 15:07:24 +01:00

32 lines
901 B
JavaScript

import React from 'react';
import { css } from 'glamor';
import { P } from 'loot-design/src/components/common';
import { Standalone } from './common';
import Navigation from './Navigation';
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;