Skip to content

Commit cea3ec5

Browse files
authored
Merge pull request #414 from kinde-oss/daniel/feat/expo
2 parents 5790c16 + 6ba83a1 commit cea3ec5

File tree

7 files changed

+471
-1051
lines changed

7 files changed

+471
-1051
lines changed

src/components/TokenUtils.astro

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!-- ---
2+
import { tokenUtilsDocumentation } from '../data/tokenUtils';
3+
---
4+
5+
{Object.entries(tokenUtilsDocumentation).map(([name, util]) => (
6+
<div class="token-util">
7+
<h3>{name}</h3>
8+
<p>{util.description}</p>
9+
10+
<pre class="language-typescript"><code>{util.signature}</code></pre>
11+
12+
<h4>Examples:</h4>
13+
{util.examples.map(example => (
14+
<div class="example">
15+
<p>{example.description}</p>
16+
<pre class="language-javascript"><code>{example.code}</code></pre>
17+
</div>
18+
))}
19+
</div>
20+
))}
21+
22+
<style>
23+
.token-util {
24+
margin-bottom: 2rem;
25+
}
26+
27+
.example {
28+
margin: 1rem 0;
29+
}
30+
</style> -->

src/content/docs/developer-tools/about/our-sdks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Make sure that your tech stack’s versions are compatible with the SDK you want
4848
- [Android SDK](/developer-tools/sdks/native/android-sdk/)
4949
- [iOS SDK](/developer-tools/sdks/native/ios-sdk/)
5050
- [React Native SDK](/developer-tools/sdks/native/react-native-sdk/)
51-
- [Expo and React Native SDK](/developer-tools/sdks/native/expo-react-native/)
51+
- [Expo and React Native SDK](/developer-tools/sdks/native/expo/)
5252
- [Flutter SDK ](/developer-tools/sdks/native/flutter-sdk/)
5353

5454
## **Other**

0 commit comments

Comments
 (0)