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

23 lines
589 B
JavaScript

import React from 'react';
import { Route } from 'react-router-dom';
import { View } from 'loot-design/src/components/common';
import CashFlow from './CashFlow';
import NetWorth from './NetWorth';
import Overview from './Overview';
class Reports extends React.Component {
render() {
return (
<View style={{ flex: 1 }}>
<Route path="/reports" exact component={Overview} />
<Route path="/reports/net-worth" exact component={NetWorth} />
<Route path="/reports/cash-flow" exact component={CashFlow} />
</View>
);
}
}
export default Reports;