auth page added

This commit was merged in pull request #5.
This commit is contained in:
victorAnumudu
2024-12-05 19:36:25 +01:00
parent 0a149342e7
commit 5efe24d858
9 changed files with 216 additions and 14 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react'
import { Outlet } from 'react-router-dom'
import MainLoader from '../loaders/MainLoader'
import BSMainLoader from '../loaders/BSMainLoader'
export default function UserExist() {
@@ -17,7 +17,7 @@ export default function UserExist() {
return (
<>
{loading ?
<MainLoader />
<BSMainLoader />
:
<Outlet />
}