我创建了一个角组件。但是现在我想在本机的响应本机中使用它,已使用“ npm publish”将其发布到npm。并在我的本机应用程序中安装了该npm,但如何在我的本机应用程序的“ App.js”中导入和呈现该npm。
import React from 'react';
import { StyleSheet, Text, View} from 'react-native';
import { RButtonAlertComponent } from "@rohanvakil/r-button-alert";
export default function App() {
return (
<View style={styles.container}>
<Text>Hello</Text>
<RButtonAlertComponent>
<lib-r-button-alert>
</lib-r-button-alert>
</RButtonAlertComponent>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});