-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #360 from Mradul-code/main
removed unrequired files
- Loading branch information
Showing
7 changed files
with
27 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
import { useNavigate } from 'react-router-dom'; | ||
import backicon from '../assets/svg/backicon.svg'; | ||
const Help = () => { | ||
const navigate = useNavigate(); | ||
|
||
const help = () => { | ||
|
||
const HomeClick = () => { | ||
navigate('/'); // Navigates to the home page | ||
}; | ||
return ( | ||
<div className='text-5xl text-black'>help</div> | ||
) | ||
} | ||
<> | ||
<button onClick={HomeClick} className='absolute top-0 left-0'> | ||
<img src={backicon} alt="" className='h-[9vh]' /> | ||
</button> | ||
<div className="flex items-center justify-center min-h-screen bg-blue-100"> | ||
<h1 className="text-3xl font-semibold text-blue-900">Help Page</h1> | ||
|
||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default help | ||
export default Help; |