add second page

This commit is contained in:
Hope87
2021-05-27 17:44:11 +03:00
parent c9d216558e
commit 4c78169acf
141 changed files with 1896 additions and 239 deletions

View File

@ -1,7 +1,12 @@
import React from 'react';
import style from './Auth.module.scss';
const Auth = () => {
return <div></div>;
return (
<div className={style.auth}>
<h2>THIS IS AUTH!!!</h2>
</div>
);
};
export default Auth;

View File

@ -0,0 +1,7 @@
.auth {
& h2 {
font-size: 5em;
color: red;
text-align: center;
}
}