@chainplatform/device
v0.1.1
Published
@chainplatform/device is a React Native library that provides a Device Info component for react-native and react-native-web.
Maintainers
Readme
React Native Device Info
@chainplatform/device is a React Native library that provides a Device Info component for react-native and react-native-web.
Install
npm install @chainplatform/device --saveor
yarn add @chainplatform/deviceUsage
import React from 'react';
import {StyleSheet} from 'react-native';
import DeviceInfo from '@chainplatform/device';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
console.log("DeviceInfo ", DeviceInfo);
return null;
}
}