added registration page react component

feature/auth-configure
AlexBarmen 2 years ago
parent fef54a1df1
commit daa10924dd

@ -1,2 +1,3 @@
export * from './lib/registration-page/registration-page';
export * from './lib/login-page/login-page';
export * from './lib/site-pages';

@ -0,0 +1,7 @@
/*
* Replace this with your own classes
*
* e.g.
* .container {
* }
*/

@ -0,0 +1,10 @@
import { render } from '@testing-library/react';
import RegistrationPage from './registration-page';
describe('RegistrationPage', () => {
it('should render successfully', () => {
const { baseElement } = render(<RegistrationPage />);
expect(baseElement).toBeTruthy();
});
});

@ -0,0 +1,14 @@
import styles from './registration-page.module.scss';
/* eslint-disable-next-line */
export interface RegistrationPageProps {}
export function RegistrationPage(props: RegistrationPageProps) {
return (
<div className={styles['container']}>
<h1>Welcome to RegistrationPage!</h1>
</div>
);
}
export default RegistrationPage;
Loading…
Cancel
Save