Initial commit

This commit is contained in:
2023-03-20 22:37:20 +01:00
parent 25d5321778
commit e54129908d
24 changed files with 8516 additions and 6996 deletions

View File

@@ -0,0 +1,23 @@
import { View, Text } from "react-native";
import tw from "twrnc";
export default function LXCResourcePage() {
return (
<View>
<View
style={tw.style("bg-white m-2 p-3 rounded-lg border border-slate-200")}
>
<Text>Currently not supported</Text>
</View>
<Text style={tw.style("ml-6 mt-4")}>Config</Text>
<View
style={tw.style("bg-white m-2 p-1 rounded-lg border border-slate-200")}
>
<Text style={tw.style("px-2 py-7 flex flex-row text-center")}>
Currently not supported
</Text>
</View>
</View>
);
}