actual/packages/desktop-client/src/components/tutorial/DeleteTransactions.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

22 lines
617 B
JavaScript

import React from 'react';
import { P } from 'loot-design/src/components/common';
import { Standalone, Title } from './common';
import Navigation from './Navigation';
function DeleteTransactions({ targetRect, navigationProps }) {
return (
<Standalone width={500}>
<Title>Deleting transactions</Title>
<P isLast={true}>
Let's cleanup the fake transactions we added. You can delete
transactions by hovering over them and clicking the "X" beside them.
</P>
<Navigation {...navigationProps} showBack={false} />
</Standalone>
);
}
export default DeleteTransactions;