Skip to content

Commit

Permalink
Feat: Added calander component
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmihi committed Nov 7, 2023
1 parent f055b00 commit 0e3577e
Show file tree
Hide file tree
Showing 5 changed files with 180 additions and 77 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
"date-fns": "^2.30.0",
"lefthook": "^1.5.2",
"lucide-react": "^0.287.0",
"material-react-table": "^1.15.0",
"moment": "^2.29.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-big-calendar": "^1.8.5",
"react-day-picker": "^8.9.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
Expand Down
184 changes: 119 additions & 65 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/dashboards/threetwo/ItemGrid.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const ItemGrid = ({ module }) => {
const moduleLinkData = linkData[module];

return (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4 min-h-screen">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
{moduleLinkData.map((item, index) => (
<LinkCard
key={index}
Expand Down
12 changes: 6 additions & 6 deletions src/dashboards/threetwo/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ const moduleData = [

const teamData = [
{
memberName: "Member1",
memberEmail: "a@gmail.com",
memberName: "Harith",
memberEmail: "harith@gmail.com",
github: "mrmihi",
roles: [{ role: "Developer", roleDescription: "Write Code" }],
},
{
memberName: "Member2",
memberEmail: "a@gmail.com",
memberName: "Dinal",
memberEmail: "dinal@gmail.com",
github: "",
roles: [{ role: "Developer", roleDescription: "Write Code" }],
},
{
memberName: "Member3",
memberEmail: "a@gmail.com",
memberName: "Shehani",
memberEmail: "shehani@gmail.com",
github: "",
roles: [{ role: "Developer", roleDescription: "Write Code" }],
},
Expand Down
Loading

0 comments on commit 0e3577e

Please sign in to comment.