### Define and Register Modals with React Native Modalfy Source: https://colorfy-software.gitbook.io/react-native-modalfy/index This snippet demonstrates the initial setup for React Native Modalfy, showing how to define your modal components and register them with the library's provider. This allows modals to be called from anywhere in your application. ```JavaScript import React from 'react'; import { View, Text, Button } from 'react-native'; import { createModalfy, ModalProvider } from 'react-native-modalfy'; const MyFirstModal = ({ modal: { closeModal } }) => ( Hello from MyFirstModal!