Skip to content

add sample text component with rescript #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 7, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update text.md
  • Loading branch information
MoOx authored Jun 7, 2021
commit a125eae33c8ceb22b60974aebf41a3414914e0e6
18 changes: 2 additions & 16 deletions docs/text.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,10 @@
---
id: text
title: Text
wip: false
wip: true
---

## Text component

```res
open ReactNative


// start component
<Text>{"Hello World"->React.string}</Text>
// end component
```


## Text component with style
## Example

```res
open ReactNative
Expand All @@ -28,7 +16,5 @@ let styles = {
})
}

// start component
<Text style={styles["title"]}> {"Hello World"->React.string} </Text>
// end component
```