-
Matiss Janis Aboltins authored
Part 3 of the migration. Part 2 here: https://github.com/actualbudget/actual/pull/1419
Matiss Janis Aboltins authoredPart 3 of the migration. Part 2 here: https://github.com/actualbudget/actual/pull/1419
index.tsx 413 B
import View from '../common/View';
import { LoadComponent } from '../util/LoadComponent';
export default function Reports() {
return (
<View style={{ flex: 1 }} data-testid="reports-page">
<LoadComponent
name="ReportRouter"
message="Loading reports..."
importer={() =>
import(/* webpackChunkName: 'reports' */ './ReportRouter')
}
/>
</View>
);
}