import React, { useEffect, useState} from 'react';
|
|
|
|
export default ()=> {
|
|
return (
|
|
<div>
|
|
<h1>Login</h1>
|
|
</div>
|
|
);
|
|
};
|