add second page
This commit is contained in:
@ -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;
|
||||
|
@ -0,0 +1,7 @@
|
||||
.auth {
|
||||
& h2 {
|
||||
font-size: 5em;
|
||||
color: red;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user