Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Created March 5, 2021 16:34
Show Gist options
  • Save nolimits4web/74341ea13a2b7b6f234b6960bf4005f6 to your computer and use it in GitHub Desktop.
Save nolimits4web/74341ea13a2b7b6f234b6960bf4005f6 to your computer and use it in GitHub Desktop.
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