feat: Add priority pages and reusable component for task management, update devDependencies
This commit is contained in:
9
tasker-client/src/app/priority/high/page.tsx
Normal file
9
tasker-client/src/app/priority/high/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
import ReusablePriorityPage from "../reusablePriorityPage";
|
||||
import { Priority } from "@/state/api";
|
||||
|
||||
const High = () => {
|
||||
return <ReusablePriorityPage priority={Priority.High} />;
|
||||
};
|
||||
|
||||
export default High;
|
||||
Reference in New Issue
Block a user