react-native-demo-library-by-rinkal 1.0.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -3
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -4,11 +4,11 @@ import React from 'react';
|
|
|
4
4
|
import { StyleSheet, Text, View } from 'react-native';
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
const TaskCard = (
|
|
7
|
+
const TaskCard = () => {
|
|
8
8
|
return (
|
|
9
9
|
<View style={styles.card}>
|
|
10
|
-
<Text style={styles.cardTitle}>
|
|
11
|
-
<Text style={styles.cardDescription}>
|
|
10
|
+
<Text style={styles.cardTitle}>Hello</Text>
|
|
11
|
+
<Text style={styles.cardDescription}>This is a task description from library.</Text>
|
|
12
12
|
</View>
|
|
13
13
|
);
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-demo-library-by-rinkal",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "rinkal",
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"react": "
|
|
11
|
-
"react-native": "0.
|
|
10
|
+
"react": "19.1.0",
|
|
11
|
+
"react-native": "0.81.5"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|