1.0.7 • Published 10 months ago
react-native-wir v1.0.7
WhatIsReal React Native Component
Component for React Native to integrate WhatIsReal AI assistants to your application.
Installation
npm install react-native-wir
Usage
Replace <ai-assistant-id>
with your given AI assistant's identification.
import { View } from 'react-native';
import { WirFloatingButton } from 'react-native-wir';
export default function App() {
return (
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}
>
<WirFloatingButton
aiAssistantId="<ai-assistant-id>"
style={{ right: 20, bottom: 40 }}
></WirFloatingButton>
</View>
);
}