Files
bigcapital/client/src/containers/Authentication/Register/RegisterPage.js
2020-10-10 15:05:18 +02:00

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;