mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
import React from 'react';
|
|
import RegisterRightSection from './RegisterRightSection';
|
|
import RegisterLeftSection from './RegisterLeftSection';
|
|
|
|
function RegisterWizardPage() {
|
|
return (
|
|
<div class="register-page">
|
|
<RegisterLeftSection />
|
|
<RegisterRightSection />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default RegisterWizardPage;
|