diff --git a/README.md b/README.md index 21cd9e8..b2438ea 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ | Data Display | `` | ✅ | | Data Display | `` | ✅ | | Data Display | `` + Cell/Column/Header | ✅ | -| Data Display | `` | 🛑 | -| Data Display | `` | 🛑 | +| Data Display | `` | ✅ | +| Data Display | `` | ✅ | | Data Display | `` | ✅ | | Data Display | `` | ✅ | | Data Display | `;` | ✅ | @@ -87,7 +87,7 @@ | Layout | `` | ✅ | | Layout | `` | ✅ | | :-: | ------------------------------------| :-: | -| Utils | `` | 🛑 | +| Utils | `` | ✅ | | Utils | `` | ✅ | ## Installation @@ -157,6 +157,28 @@ All bindings are in `RsuiteUi` namespace, let's try! Some **examples** ``` +**Animation** + +```reason + let (isVisible, setVisibility) = React.useState(() => false); + + React.useEffect0(() => { + Js.Global.setTimeout(() => { + setVisibility(_ => true); + }, 200); + None + }); + + +
+ {React.string("An")} +
+
+``` + + **Modal** @@ -195,7 +217,18 @@ All bindings are in `RsuiteUi` namespace, let's try! Some **examples** Notification._open(...); // instead Notification.open() ``` -**II**. Similar situation with ``; Sometimes we would be to use prop `justify` with **end** value, but we should use **end_** instead +**II**. **_in** instead **in** prop + +```reason + + + + + +``` + + +**III**. Similar situation with ``; Sometimes we would be to use prop `justify` with **end** value, but we should use **end_** instead **Example**