-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from ChangePlusPlusVandy/create-program
Add events to program/tags
- Loading branch information
Showing
10 changed files
with
437 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React, { useEffect, useState } from 'react'; | ||
import PopupWindow from '@/components/PopupWindow'; | ||
import Image from 'next/image'; | ||
import { ExclamationCircleFilled } from '@ant-design/icons'; | ||
import { QueriedTagData } from 'bookem-shared/src/types/database'; | ||
import useSWR from 'swr'; | ||
import { ObjectId } from 'mongodb'; | ||
import { Modal, message } from 'antd'; | ||
import { fetcher } from '@/utils/utils'; | ||
|
||
const AddEventPopupWindow = ({ | ||
setShowPopup, | ||
}: { | ||
setShowPopup: React.Dispatch<React.SetStateAction<boolean>>; | ||
}) => { | ||
return ( | ||
<> | ||
{/* ANTD message context holder */} | ||
|
||
<PopupWindow hidePopup={() => setShowPopup(false)}> | ||
<></> | ||
</PopupWindow> | ||
</> | ||
); | ||
}; | ||
|
||
export default AddEventPopupWindow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.