feat: fix register page layout.

This commit is contained in:
Ahmed Bouhuolia
2020-10-10 15:05:18 +02:00
parent 31a267a560
commit b8060010d6
18 changed files with 315 additions and 290 deletions

View File

@@ -0,0 +1,14 @@
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;