adding attachments but will impl;ement later

This commit is contained in:
Arjun Patel
2022-01-17 21:05:35 -08:00
parent 53c48cc4e5
commit 5208306c07
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ export default function DashboardRoom() {
<span className="flex flex-row justify-end space-x-3 pb-5 items-center">
<span className="flex flex-col mr-auto">
<span className="text-white ">
Rooms
ROOMS
<button
className="right-1 rounded-lg py-1 px-2 ml-1
shadow-md text-center text-white text-sm font-bold"
+8
View File
@@ -0,0 +1,8 @@
export default class Attachment {
id: string;
name: string;
description: string;
link: string;
constructor() {}
}