Skip to content
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

typo fixed #57

Merged
merged 5 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions apps/docs/docs/learn/05-theming/02-using-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import TabItem from '@theme/TabItem';
:::info Note

The [`unstable_moduleResolution`](/docs/api/configuration/babel-plugin/#unstable_moduleresolution)
option needs to enabled in the StyleX Babel configuration to enable theming APIs.
option needs to be enabled in the StyleX Babel configuration to enable theming APIs.

:::

Expand Down Expand Up @@ -42,7 +42,7 @@ export const colors = stylex.defineVars({
});
```

These styles can the imported and used like so:
These styles can then imported and used like so:

```tsx title="components/MyComponent.js"
import * as stylex from '@stylexjs/stylex';
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/docs/learn/05-theming/03-creating-themes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sidebar_position: 3
:::info Note

The [`unstable_moduleResolution`](/docs/api/configuration/babel-plugin/#unstable_moduleresolution)
option needs to enabled in the StyleX Babel configuration to enable theming APIs.
option needs to be enabled in the StyleX Babel configuration to enable theming APIs.

:::

Expand Down
Loading