parent
84cd830c89
commit
b79c081f93
@ -1,3 +1,4 @@
|
||||
export * from './lib/home-page/home-page';
|
||||
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 HomePage from './home-page';
|
||||
|
||||
describe('HomePage', () => {
|
||||
it('should render successfully', () => {
|
||||
const { baseElement } = render(<HomePage />);
|
||||
expect(baseElement).toBeTruthy();
|
||||
});
|
||||
});
|
@ -0,0 +1,14 @@
|
||||
import styles from './home-page.module.scss';
|
||||
|
||||
/* eslint-disable-next-line */
|
||||
export interface HomePageProps {}
|
||||
|
||||
export function HomePage(props: HomePageProps) {
|
||||
return (
|
||||
<div className={styles['container']}>
|
||||
<h1>Welcome to HomePage!</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default HomePage;
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue