tracking-code-which-will-go-to-the-HEAD FLAMEAL Documentation client/src/pages/LoginRegisterPage.js

Source

client/src/pages/LoginRegisterPage.js

import React from "react";
import Login from "../components/Login/Login";

/**
 * React component to display the login/registration page
 * @category Login
 * @component
 * @returns {ReactComponent} the signup page component
 */
const LoginRegisterPage = () => {
  return (
    <>
      <Login />
    </>
  );
};
export default LoginRegisterPage;