showing modal for creating room

This commit is contained in:
Arjun Patel
2022-01-16 15:44:18 -08:00
parent 6ce8a9f0e0
commit 7033c79ebb
4 changed files with 23 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
import { Modal } from "antd";
export default function CreateRoom({ show }) {
return (
<Modal
title="Create Room"
centered
visible={show}
// onOk={() => this.setModal2Visible(false)}
// onCancel={() => this.setModal2Visible(false)}
>
<p>some contents...</p>
<p>some contents...</p>
<p>some contents...</p>
</Modal>
);
}