one
Version:
One is a new React Framework that makes Vite serve both native and web.
40 lines (39 loc) • 875 B
JavaScript
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
import React from "react";
import { StyleSheet, Text } from "react-native";
function Unmatched() {
return /* @__PURE__ */_jsx(Text, {
children: "unmmatched!!!!!!!!!"
});
}
var styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "black",
padding: 24,
alignItems: "center",
justifyContent: "center"
},
title: {
color: "white",
fontSize: 36,
paddingBottom: 12,
marginBottom: 12,
borderBottomColor: "#323232",
borderBottomWidth: 1,
textAlign: "center",
fontWeight: "bold"
},
subtitle: {
color: "white",
fontSize: 18,
marginBottom: 12,
textAlign: "center"
},
link: {
color: "rgba(255,255,255,0.4)",
textAlign: "center"
}
});
export { Unmatched };
//# sourceMappingURL=Unmatched.native.js.map