From 3ed34d5e93c41aed9866ffcb163f6c2febf1822f Mon Sep 17 00:00:00 2001 From: Vlad Shcherbin Date: Sat, 19 Jun 2021 11:20:50 +0300 Subject: [PATCH] Fix typo --- packages/docs/src/pages/getting-started/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/pages/getting-started/index.mdx b/packages/docs/src/pages/getting-started/index.mdx index 0c6108aaf..6e89df43e 100644 --- a/packages/docs/src/pages/getting-started/index.mdx +++ b/packages/docs/src/pages/getting-started/index.mdx @@ -78,7 +78,7 @@ Confused about this `@jsxImportSource` comment? Read more about [JSX Pragma](/gu ### Classic JSX runtime -If you use the classic JSX runtime, the the `/** @jsxImportSource theme-ui */` comment has no effect. +If you use the classic JSX runtime, the `/** @jsxImportSource theme-ui */` comment has no effect. In this case enable the `sx` prop by adding the `/** @jsx jsx */` comment instead and importing `jsx` from Theme UI. ```jsx