From c37bf4ca20251d6259c86dce81fb9bb82dce0e6e Mon Sep 17 00:00:00 2001 From: aarvay Date: Fri, 22 Dec 2023 11:26:06 +0530 Subject: [PATCH] update getting-started.mdx Fixes a typo in the import --- website/pages/docs/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/getting-started.mdx b/website/pages/docs/getting-started.mdx index fa76c6b..a0d6bec 100644 --- a/website/pages/docs/getting-started.mdx +++ b/website/pages/docs/getting-started.mdx @@ -87,7 +87,7 @@ You can enable Tailwind autocompletion inside `twc` using the steps below: Import `twc` and create a component using `twc.div`, where `div` stands to the tag name of the component you want to create. ```tsx filename="card.tsx" -import { tsc } from "react-twc"; +import { twc } from "react-twc"; export const Card = twc.div`rounded-lg border bg-slate-100 text-white shadow-sm`; ```