Created
March 5, 2021 16:34
-
-
Save nolimits4web/74341ea13a2b7b6f234b6960bf4005f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { Page, Navbar, Block, theme } from "framework7-react"; | |
export default function Home() { | |
return ( | |
<Page> | |
<Navbar title="Framework7 Next.js" /> | |
<Block> | |
{theme.ios && <p>Hello to iOS user!</p>} | |
{theme.md && <p>Hello to Android user!</p>} | |
</Block> | |
</Page> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment