This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iump | |
import { View } from 'react-native'; | |
import NotificationProvider from './NotificationProvider'; | |
const App = () => { | |
return ( | |
<View> | |
<NotificationProvider /> | |
{/* Include NotificationProvider with the rest of your app */} | |
</View> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//old function | |
function test() { | |
return 1 + 2; | |
} | |
const test = () => { | |
return 1 + 2; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./letsencrypt-auto certonly --renew-by-default -d domain1.com,domain2.com |