Skip to content

Instantly share code, notes, and snippets.

@giioohbernini
Created July 28, 2020 14:02
Show Gist options
  • Save giioohbernini/66aa38856d3de7b281941f7946b4b160 to your computer and use it in GitHub Desktop.
Save giioohbernini/66aa38856d3de7b281941f7946b4b160 to your computer and use it in GitHub Desktop.
Web no native #2
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