如何在React Native中使用角度分量

时间:2019-09-10 10:23:30

标签: angular react-native npm

我创建了一个角组件。但是现在我想在本机的响应本机中使用它,已使用“ 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',
  },
});

在上述代码中,出现以下错误:enter image description here

0 个答案:

没有答案