Skip to content

Commit

Permalink
Merge pull request #13 from argyle-systems/hooks-test
Browse files Browse the repository at this point in the history
Update example app to use hooks
  • Loading branch information
Varnius authored Jul 4, 2021
2 parents 4134b4b + 6852043 commit 7fe2143
Show file tree
Hide file tree
Showing 6 changed files with 660 additions and 760 deletions.
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
bracketSpacing: false,
bracketSpacing: true,
jsxBracketSameLine: true,
singleQuote: true,
semi: false,
Expand Down
112 changes: 0 additions & 112 deletions App.js

This file was deleted.

8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* @format
*/

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
import { AppRegistry } from 'react-native'
import { LinkExample } from './src/LinkExample'
import { name as appName } from './app.json'

AppRegistry.registerComponent(appName, () => App);
AppRegistry.registerComponent(appName, () => LinkExample)
Loading

0 comments on commit 7fe2143

Please sign in to comment.