mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
17 lines
445 B
JavaScript
17 lines
445 B
JavaScript
import React from 'react';
|
|
|
|
import EnsureOrganizationIsNotReady from './EnsureOrganizationIsNotReady';
|
|
import SetupRightSection from './SetupRightSection';
|
|
import SetupLeftSection from './SetupLeftSection';
|
|
|
|
|
|
export default function WizardSetupPage() {
|
|
return (
|
|
<EnsureOrganizationIsNotReady>
|
|
<div class="setup-page">
|
|
<SetupLeftSection />
|
|
<SetupRightSection />
|
|
</div>
|
|
</EnsureOrganizationIsNotReady>
|
|
);
|
|
}; |