export function Modal({ open, body, header, onClose, loading }: Props) {
return (
...
)
}
Modal.defaultProps = {
loading: false,
}
My understanding is that this is not needed and can be simplified like this
export function Modal({ open, body, header, onClose, loading = false }: Props) {
return (
...
)
}