Files
bigcapital/packages/webapp/src/containers/Setup/WizardSetupPage.tsx
2023-02-03 01:02:31 +02:00

15 lines
350 B
TypeScript

// @ts-nocheck
import React from 'react';
import SetupRightSection from './SetupRightSection';
import SetupLeftSection from './SetupLeftSection';
import '@/style/pages/Setup/SetupPage.scss';
export default function WizardSetupPage() {
return (
<div class="setup-page">
<SetupLeftSection />
<SetupRightSection />
</div>
);
};