mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
19 lines
522 B
TypeScript
19 lines
522 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import SetupRightSection from './SetupRightSection';
|
|
import SetupLeftSection from './SetupLeftSection';
|
|
import EnsureOrganizationIsNotReady from '@/components/Guards/EnsureOrganizationIsNotReady';
|
|
|
|
import '@/style/pages/Setup/SetupPage.scss';
|
|
|
|
export default function WizardSetupPage() {
|
|
return (
|
|
<EnsureOrganizationIsNotReady>
|
|
<div class="setup-page">
|
|
<SetupLeftSection />
|
|
<SetupRightSection />
|
|
</div>
|
|
</EnsureOrganizationIsNotReady>
|
|
);
|
|
}
|