mirror of
https://github.com/zoriya/vike-react-native-web-bug.git
synced 2025-12-06 06:36:18 +00:00
21 lines
327 B
TypeScript
21 lines
327 B
TypeScript
import React from "react";
|
|
import { Counter } from "./Counter.js";
|
|
import { Text } from "react-native";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<h1>My Vike app</h1>
|
|
This page is:
|
|
<ul>
|
|
<li>
|
|
<Text>Rendered to HTML.</Text>
|
|
</li>
|
|
<li>
|
|
Interactive. <Counter />
|
|
</li>
|
|
</ul>
|
|
</>
|
|
);
|
|
}
|