14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
import React from 'react';
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import App from './dist/index';
|
|
|
|
class MainApp extends React.Component {
|
|
render() {
|
|
return (
|
|
<App />
|
|
);
|
|
}
|
|
}
|
|
|
|
AppRegistry.registerComponent('zxcvbn', () => MainApp);
|