mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
15 lines
350 B
TypeScript
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>
|
|
);
|
|
}; |