import React, { Component } from "react";
import { Image, StyleSheet, Text, View } from "react-native";
import { Button } from "@ant-design/react-native";
const logoUri = `data:image/svg+xml;utf8,`;
const Link = props => (
);
class App extends Component {
render() {
return (
React Native for Web
This is an example of an app built with{" "}
Create React App
{" "}
and{" "}
React Native for Web
To get started, edit{" "}
src/App.js
.
);
}
}
const styles = StyleSheet.create({
app: {
marginHorizontal: "auto",
maxWidth: 500
},
logo: {
height: 80
},
header: {
padding: 20
},
title: {
fontWeight: "bold",
fontSize: "1.5rem",
marginVertical: "1em",
textAlign: "center"
},
text: {
lineHeight: "1.5em",
fontSize: "1.125rem",
marginVertical: "1em",
textAlign: "center"
},
link: {
color: "#1B95E0"
},
code: {
fontFamily: "monospace, monospace"
}
});
export default App;