Skip to content

Commit

Permalink
type
Browse files Browse the repository at this point in the history
  • Loading branch information
bjerrecs committed Feb 28, 2024
1 parent 54292b4 commit 2e34de9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/AirportModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import {Modal, ModalContent, ModalHeader, ModalBody, ModalFooter, Button, useDisclosure} from "@nextui-org/react";

export default function AirportModal(props: {airport: Object}) {
interface Airport {
name: string;,
standguide: string,
icao:string
}

export default function AirportModal(props: {airport: Airport}) {
const {isOpen, onOpen, onOpenChange} = useDisclosure();

return (
Expand Down

0 comments on commit 2e34de9

Please sign in to comment.