How to use and import a Modal in react native?

66 views Asked by At

I have a simple modal in a file, and I want to import it to use in the App.js. Don't know how to do the process to get it up and running in the App.js

import {} from 'react';
import modal...
const modal = props =>{
  
   return(
       <Modal>
         ...
       </Modal>
   );
}
export default modal;

In the App.js do not know how to do!

1

There are 1 answers

0
ahmet gül On

just import from location. then use with brackets