mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
14 lines
333 B
JavaScript
14 lines
333 B
JavaScript
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>
|
|
);
|
|
}; |