diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-25 17:23:30 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-25 17:23:30 -0400 |
| commit | 2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80 (patch) | |
| tree | e02587b4dca4bd7027b4cc012d458b18392643ea /web/src/app/components/Card.jsx | |
| parent | 1c12d378d66b92b1674acd17640f2bac752da289 (diff) | |
| download | AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.tar.gz AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.tar.bz2 AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.zip | |
Implemented admin dashboard
Diffstat (limited to 'web/src/app/components/Card.jsx')
| -rw-r--r-- | web/src/app/components/Card.jsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/src/app/components/Card.jsx b/web/src/app/components/Card.jsx new file mode 100644 index 0000000..e6d55fd --- /dev/null +++ b/web/src/app/components/Card.jsx @@ -0,0 +1,7 @@ +export default function Card({children}) { + return ( + <div className="p-4 bg-gray-900 rounded-md"> + {children} + </div> + ) +} |
