-
Notifications
You must be signed in to change notification settings - Fork 0
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 #66 from G-Techs/ft/migrate-addCategoryPage
feat: migrate AddCategory page and its all dependencies to TS
- Loading branch information
Showing
7 changed files
with
83 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"editor.fontFamily": "'JetBrains Mono', 'monospace', monospace" | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from "react"; | ||
import { useState } from "react"; | ||
import AddCategory from "../modules/AddCategory"; | ||
import PageCard from "../modules/__modules__/Card/PageCard"; | ||
|
||
const AddCategoryPage = () => { | ||
const [isTopNav, setIsTopNav] = useState(false); | ||
|
||
return ( | ||
<PageCard setIsTopNav={setIsTopNav}> | ||
<AddCategory /> | ||
</PageCard> | ||
); | ||
}; | ||
export default AddCategoryPage; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import React from "react"; | ||
|
||
const AddCategory = () => { | ||
return ( | ||
<> | ||
<div className="my-24 bg-white flex flex-col shadow-lg mr-5 rounded-xl pt-2"> | ||
<div className="flex justify-between items-center pb-5 border-b"> | ||
<h2 className="font-bold text-2xl text-gray-700 pl-5 pt-3"> | ||
Add Categories | ||
</h2> | ||
</div> | ||
<form className="flex flex-col px-2 py-4 gap-2"> | ||
<div className="flex flex-col px-2 w-full"> | ||
<label htmlFor="category-name" className="pb-2"> | ||
choose a name | ||
</label> | ||
<input | ||
type="text" | ||
name="category-name" | ||
className="bg-transparent border px-3 transition-all py-2 rounded-md outline-none" | ||
/> | ||
</div> | ||
<div className="flex flex-col px-2 "> | ||
<label htmlFor="category-name" className="py-2"> | ||
Category Description: | ||
</label> | ||
<textarea | ||
name="category-name" | ||
cols={20} | ||
rows={6} | ||
className="bg-transparent border px-3 transition-all py-4 rounded-md outline-none" | ||
/> | ||
</div> | ||
<div className="flex capitalize right gap-4 px-2"> | ||
<button className="bg-primary w-20 px-2 py-2 rounded-xl text-white font-medium "> | ||
submit | ||
</button> | ||
<button | ||
type="reset" | ||
className="bg-orange-600 w-20 px-2 py-2 rounded-xl text-white font-medium " | ||
> | ||
reset | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
|
||
export default AddCategory; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from "react"; | ||
import AddCategoryPage from '../../components/AddCategoryPage' | ||
|
||
const addcategory = () => { | ||
return ( | ||
<div className="bg-globalBg h-screen"> | ||
<AddCategoryPage/> | ||
</div> | ||
) | ||
|
||
}; | ||
|
||
export default addcategory; |
959ed7a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
yokaa-frontend – ./
yokaa-frontend-git-main-yokaa.vercel.app
yokaa-frontend.vercel.app
yokaa-frontend-yokaa.vercel.app