mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
import React from 'react';
|
|
import MakeJournalEntriesForm from './MakeJournalEntriesForm';
|
|
import DashboardConnect from 'connectors/Dashboard.connector';
|
|
import {compose} from 'utils';
|
|
|
|
function MakeJournalEntriesPage() {
|
|
return (
|
|
<MakeJournalEntriesForm />
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
DashboardConnect,
|
|
)(MakeJournalEntriesPage); |