Skip to content

Commit dab1e96

Browse files
committed
feat: text component
1 parent b259607 commit dab1e96

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ pod install
5858

5959
- [Home page](https://rncomponent.com)
6060
- [Card](https://rncomponent.com/components/card)
61-
- [Text] (https://rncomponent.com/components/text)
61+
- [Text](https://rncomponent.com/components/text)

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bsdaoquang/rncomponent",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "UI library for react native",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -38,7 +38,13 @@
3838
"keywords": [
3939
"react-native",
4040
"ios",
41-
"android"
41+
"android",
42+
"ui",
43+
"react native ui",
44+
"React native UI components",
45+
"react native components",
46+
"react native ui library",
47+
"react native components library"
4248
],
4349
"repository": {
4450
"type": "git",

src/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { DateTime } from './utils/DateTime';
1010
import { numberToString } from './utils/numberToString';
1111
import { replaceHtmlTags } from './utils/replaceHtmlTags';
1212
import { replaceName } from './utils/replaceName';
13+
import Text from './components/Text';
1314

1415
export {
1516
CheckboxItem,
@@ -24,4 +25,5 @@ export {
2425
numberToString,
2526
Section,
2627
Card,
28+
Text,
2729
};

0 commit comments

Comments
 (0)