Files
graff.estate/client/src/components/modals/FeedbackModal.tsx
T
2023-12-28 15:35:58 +05:00

14 lines
323 B
TypeScript

import ContactsForm from "../ContactsForm";
function FeedbackModal() {
return (
<div className="fixed top-0 right-0 h-full sm:w-[408px] w-full bg-[#14161F] overflow-y-auto sm:p-8 p-6">
<div className="flex flex-col gap-4">
<ContactsForm />
</div>
</div>
);
}
export default FeedbackModal;