diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..7606f7d Binary files /dev/null and b/.DS_Store differ diff --git a/compass/components/Table/NewResourceSidebar.tsx b/compass/components/Table/NewResourceSidebar.tsx new file mode 100644 index 0000000..eaf6fb8 --- /dev/null +++ b/compass/components/Table/NewResourceSidebar.tsx @@ -0,0 +1,76 @@ +import React from "react"; + +interface NewResource { + name: string; + link: string; + program?: string; + summary?: string; +} + +interface NewResourceSidebarProps { + isOpen: boolean; + newResource: NewResource;ß + handleInputChange: (e: React.ChangeEvent) => void; + handleSubmit: (e: React.FormEvent) => void; +} + +const NewResourceSidebar: React.FC = ({ isOpen, newResource, handleInputChange, handleSubmit }) => { + return ( +
+
+

Add New Resource

+
+
+ + +
+
+ + +
+
+ + +
+
+ +