Created
July 28, 2020 14:02
-
-
Save giioohbernini/66aa38856d3de7b281941f7946b4b160 to your computer and use it in GitHub Desktop.
Web no native #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
import React from 'react' | |
import isApp from 'utils/isApp' | |
const welcomeType = isApp | |
? 'Your app home page' | |
: 'Your web home page' | |
const Home = () => { | |
return ( | |
<div> | |
<h2>Home - {welcomeType}</h2> | |
</div> | |
) | |
} | |
export default Home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment