From 8174fbdabb6f882e4c9351af028f02344670d17a Mon Sep 17 00:00:00 2001 From: mym0404 Date: Sat, 30 Mar 2024 18:55:01 +0900 Subject: [PATCH 1/2] docs: fix typo in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e4ade68..cc7c69a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ prepare your contribution. ## Setup the Project -The following steps will get you up and running to contribute to Chakra UI: +The following steps will get you up and running to contribute to this repository: 1. Fork the repo (click the Fork button at the top right of [this page](https://github.com/mj-studio-library/react-native-styled-system)) From 02603ef0e9a3a5658e98314d8b13aaf8d4b23f89 Mon Sep 17 00:00:00 2001 From: mym0404 Date: Wed, 17 Apr 2024 17:34:13 +0900 Subject: [PATCH 2/2] fix(core): export hooks --- CONTRIBUTING.md | 2 +- packages/core/src/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cc7c69a..a560480 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -158,5 +158,5 @@ interested in contributing to the documentation, create pr as manual. ## License -By contributing your code to the chakra-ui GitHub repository, you agree to +By contributing your code to the react-native-styled-system GitHub repository, you agree to license your contribution under the MIT license. diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 9311aac..ea8d265 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -2,5 +2,7 @@ export * from './@types/SxProps'; export * from './@types/ThemedDict'; export * from './@types/ThemedTypings'; export * from './hook/useSx'; +export * from './hook/useSxStyle'; +export * from './hook/useSxTokens'; export * from './provider/StyledSystemProvider'; export * from './util/propsToThemedStyle';