Feat:Created AddCrop component for adding more crops in a perticular Farm

This commit is contained in:
2025-02-23 00:29:13 +05:30
parent 88d229cb2d
commit ee59400d76
+12
View File
@@ -0,0 +1,12 @@
import { Text, View } from "react-native";
import React, { Component } from "react";
export default class AddCrop extends Component {
render() {
return (
<View>
<Text>AddCrop</Text>
</View>
);
}
}